pkgsrc-Bugs archive

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

Re: pkg/31027



The following reply was made to PR pkg/31027; it has been noted by GNATS.

From: "KISHIMOTO, Makoto" <ksmakoto%dd.iij4u.or.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: toni%cam.csfi.net@localhost
Subject: Re: pkg/31027
Date: Wed, 31 Aug 2005 10:31:37 +0900

 hello,
 
 The problem in PR pkg/31027 is caused by incorrect quote in the python
 "configure" script. (In my case, system is Linux, and library is
 py-readline).
 
 The quotation which contains environment variable expansion, must
 be by doublequote, not singlequote. I've modify "patch-al" patch in
 python24 patches, and update python, then I can build library.
 
 $ diff /usr/pkgsrc/lang/python24/patches/patch-al.orig 
/usr/pkgsrc/lang/python24/patches/patch-al
 81c81
 < +    Linux*|GNU*) LDSHARED='$(CC) -shared ${LDFLAGS}';;
 ---
 > +    Linux*|GNU*) LDSHARED='$(CC) -shared'" ${LDFLAGS}";;
 90,91c90,91
 < +    NetBSD*|DragonFly*) LDSHARED='$(CC) -shared ${LDFLAGS}';;
 < +    Interix*) LDSHARED='$(CC) -shared ${LDFLAGS}';; # XXX tv needs 
image-base hack
 ---
 > +    NetBSD*|DragonFly*) LDSHARED='$(CC)'" -shared ${LDFLAGS}";;
 > +    Interix*) LDSHARED='$(CC)'" -shared ${LDFLAGS}";; # XXX tv needs 
 > image-base hack
 



Home | Main Index | Thread Index | Old Index