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

Bug#153282: mklibs: Don't impose constraints on what my cross tools are called



Package: mklibs
Version: 0.1.2
Severity: minor
Tags: patch

At present when using mklibs in a cross build setup my tools need to be
called something like /path/to/tool/bin/prefix-gcc.  Sometimes the tools I
want to use are /path/to/tool/bin/gcc.  mklibs shouldn't force me to
have a '-' in the tool name.  The included patch fixes it.

BTW, it might make more sense to have this option --prefix rather than
--target, though this is a minor issue.

-David


Index: mklibs.py
===================================================================
RCS file: /cvs/debian-boot/mklibs/mklibs.py,v
retrieving revision 1.1.1.1
diff -u -b -B -w -p -u -r1.1.1.1 mklibs.py
--- mklibs.py	2002/06/11 19:58:46	1.1.1.1
+++ mklibs.py	2002/07/17 14:36:26
@@ -235,7 +235,7 @@ for opt, arg in optlist:
     elif opt == "--libc-extras-dir":
         libc_extras_dir = arg
     elif opt == "--target":
-        target = arg + "-"
+        target = arg
     else:
         print "WARNING: unknown option: " + opt + "\targ: " + arg
 


-- System Information:
Debian Release: 3.0
Architecture: i386
Kernel: Linux oink 2.4.18 #31 Fri May 31 09:20:28 PDT 2002 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages mklibs depends on:
ii  python                        2.1.3-3    An interactive object-oriented scr

-- no debconf information



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



Reply to: