diff options
author | jlam <jlam@pkgsrc.org> | 2001-10-16 04:47:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-10-16 04:47:06 +0000 |
commit | 1199421c886f4adb8b18168b0461be30a293d3e9 (patch) | |
tree | 267364202485812a58fa74f883c53f549444a8ad /www/apache6/Makefile | |
parent | b8d0b8d85a74408f1891ca24a76395faeaf3d1b3 (diff) | |
download | pkgsrc-1199421c886f4adb8b18168b0461be30a293d3e9.tar.gz |
Use --whole-archive, not -whole-archive, as the latter isn't recognized by
a.out ld.
Diffstat (limited to 'www/apache6/Makefile')
-rw-r--r-- | www/apache6/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache6/Makefile b/www/apache6/Makefile index 2d9872b1f44..42d399be358 100644 --- a/www/apache6/Makefile +++ b/www/apache6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2001/10/16 04:11:06 jlam Exp $ +# $NetBSD: Makefile,v 1.38 2001/10/16 04:47:06 jlam Exp $ # # This package does not compile in mod_ssl support hooks, as it conflicts # with IPv6-enable patch. @@ -83,7 +83,7 @@ APACHE_CUSTOM_CFLAGS+= -O6 -fomit-frame-pointer -fexpensive-optimizations # written in C++ will resolve correctly. # .if (${OPSYS} == "NetBSD") -LINK_LIBGCC_LDFLAGS= -Wl,-whole-archive -lgcc -Wl,-no-whole-archive +LINK_LIBGCC_LDFLAGS= -Wl,--whole-archive -lgcc -Wl,--no-whole-archive MAKE_ENV+= LINK_LIBGCC_LDFLAGS="${LINK_LIBGCC_LDFLAGS}" .endif |