[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: mklibs_0.1.3_i386.changes ACCEPTED



On Mon, Jul 22, 2002 at 07:17:28PM -0400, Debian Installer wrote:
> 
> Accepted:
> mklibs_0.1.3.dsc
>   to pool/main/m/mklibs/mklibs_0.1.3.dsc
> mklibs_0.1.3.tar.gz
>   to pool/main/m/mklibs/mklibs_0.1.3.tar.gz
> mklibs_0.1.3_all.deb
>   to pool/main/m/mklibs/mklibs_0.1.3_all.deb
> Announcing to debian-devel-changes@lists.debian.org
> Closing bugs: 153283 
> 
> 
> Thank you for your contribution to Debian.
> 
> 

This version loses the following changes from 0.1.2; please
reinstate them.

Matt

--- mklibs.py	Mon Jul 22 16:34:30 2002
+++ mklibs	Sat Jun 22 05:49:29 2002
@@ -214,7 +214,7 @@
 optlist, proglist = getopt.getopt(sys.argv[1:], opts, longopts)
 
 # some global variables
-lib_path = "/lib/", "/usr/lib/", "/usr/X11R6/lib/"
+lib_path = []
 dest_path = "DEST"
 ldlib = "LDLIB"
 libc_extras_dir = "/usr/lib/libc_pic"
@@ -225,9 +225,9 @@
 for opt, arg in optlist:
     if opt in ("-v", "--verbose"):
         if debuglevel < DEBUG_SPAM:
             debuglevel = debuglevel + 1
     elif opt == "-L":
-        lib_path = string.split(arg, ":")
+        lib_path.extend(string.split(arg, ":"))
     elif opt in ("-d", "--dest-dir"):
         dest_path = arg
     elif opt == "--ldlib":
@@ -236,9 +236,22 @@
         libc_extras_dir = arg
     elif opt == "--target":
         target = arg + "-"
+    elif opt == "--help":
+        print "Usage: mklibs [OPTION]... -d DEST FILE ..."
+        print "Make a set of minimal libraries for FILE(s) in DEST."
+        print 
+        print "  -d, --dest-dir DIRECTORY     create libraries in DIRECTORY"
+        print "  -L DIRECTORY[:DIRECTORY]...  add DIRECTORY(s) to the library search path"
+        print "      --ldlib=3DLDLIB            use LDLIB for the dynamic linker"
+        print "      --libc-extras-dir DIRECTORY  look for libc extra files in DIRECTORY"
+        print "  -v, --verbose                explain what is being done"
+        print "      --help                   display this help and exit"
+        sys.exit(0)
     else:
         print "WARNING: unknown option: " + opt + "\targ: " + arg
 
+lib_path.extend(["/lib/", "/usr/lib/", "/usr/X11R6/lib/"])
+
 if ldlib == "LDLIB":
     ldlib = os.getenv("ldlib")
 


-- 
To UNSUBSCRIBE, email to debian-boot-request@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org



Reply to: