On Wed, Jan 18, 2006 at 08:03:10AM +0000, Richard Frith-Macdonald wrote:
> I didn't know about that patch.
> I applied it to base in CVS ... thanks.

Richard,

I was just talking to Riccardo on IRC about the patch, and it looks like
I accidentally forgot a comma in one of the netbsd linking lines :)

-Wl-R should be -Wl,-R.  I've attached the patch.  (The configure will
need to be regenerated as well).

Sorry about that,
Andy

-- 
Andrew Ruder
http://www.aeruder.net
? whoops.diff
Index: config/addlibrarypath.m4
===================================================================
RCS file: /sources/gnustep/gnustep/core/base/config/addlibrarypath.m4,v
retrieving revision 1.1
diff -u -r1.1 addlibrarypath.m4
--- config/addlibrarypath.m4    18 Jan 2006 08:01:31 -0000      1.1
+++ config/addlibrarypath.m4    18 Jan 2006 19:38:42 -0000
@@ -11,7 +11,7 @@
 case "$target_os" in
        netbsd*)        
                LDFLAGS="$LDFLAGS -L$1 -Wl,-R$1"
-               LDIR_FLAGS="$LDIR_FLAGS -Wl-R$1 -L$1";;
+               LDIR_FLAGS="$LDIR_FLAGS -Wl,-R$1 -L$1";;
        *)      
                LDFLAGS="$LDFLAGS -L$1"
                LDIR_FLAGS="$LDIR_FLAGS -L$1";;
_______________________________________________
Gnustep-dev mailing list
Gnustep-dev@gnu.org
http://lists.gnu.org/mailman/listinfo/gnustep-dev

Reply via email to