diff options
author | grant <grant> | 2003-05-31 13:30:30 +0000 |
---|---|---|
committer | grant <grant> | 2003-05-31 13:30:30 +0000 |
commit | 6849a63c26aa8507a181f4fcb9d020b3f8f76ae3 (patch) | |
tree | fcdcbcd77c7c7fe500828fb0a7191bb17d8760bc /www/apache/Makefile | |
parent | 2a54da8c36096b29cd31da2b0422c397985ff7d6 (diff) | |
download | pkgsrc-6849a63c26aa8507a181f4fcb9d020b3f8f76ae3.tar.gz |
drop some unnecessary parens
Diffstat (limited to 'www/apache/Makefile')
-rw-r--r-- | www/apache/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/apache/Makefile b/www/apache/Makefile index cdeaa5c3b89..1952f3edcd2 100644 --- a/www/apache/Makefile +++ b/www/apache/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.126 2003/05/31 13:29:20 grant Exp $ +# $NetBSD: Makefile,v 1.127 2003/05/31 13:30:30 grant Exp $ # # This pkg does not compile in mod_ssl, only the `mod_ssl EAPI' (a set of # code hooks that allow mod_ssl to be compiled separately later, if desired). @@ -105,7 +105,7 @@ APACHE_CUSTOM_CFLAGS+= -D_FILE_OFFSET_BITS=64 # certain symbols from the C++ implementation (__get_eh_context, etc.) # referenced by DSOs written in C++ will resolve correctly. # -.if (${OPSYS} == "NetBSD") && (${OBJECT_FMT} == "ELF") +.if ${OPSYS} == "NetBSD" && ${OBJECT_FMT} == "ELF" LINK_LIBGCC_LDFLAGS= -Wl,--whole-archive -lgcc -Wl,--no-whole-archive .endif |