diff options
author | grant <grant@pkgsrc.org> | 2004-06-27 13:40:20 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-06-27 13:40:20 +0000 |
commit | c83f2a36bb7e94e45d6e4fa0e4719caf5b78018d (patch) | |
tree | 83277aa9b912d7e9a036b31eb9ecf11fbb5148de | |
parent | d1267543a4d46f785e2dd3f83f45ae0917fb8208 (diff) | |
download | pkgsrc-c83f2a36bb7e94e45d6e4fa0e4719caf5b78018d.tar.gz |
don't pass gcc specific flags.
XXX this is still bogus because it passes -fpic to generate pic code
to build a shared obbject which is not always desired (eg. Interix).
-rw-r--r-- | pkgtools/pkgconflict/files/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkgconflict/files/Makefile b/pkgtools/pkgconflict/files/Makefile index cd7e469c5ed..a2695ad728f 100644 --- a/pkgtools/pkgconflict/files/Makefile +++ b/pkgtools/pkgconflict/files/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2002/04/08 16:26:15 wennmach Exp $ +# $NetBSD: Makefile,v 1.3 2004/06/27 13:40:20 grant Exp $ PGINCLUDE=@PREFIX@/include/pgsql .c.o: - cc -I${PGINCLUDE} -I${PGINCLUDE}/server -Wall -fpic -c $< + cc -I${PGINCLUDE} -I${PGINCLUDE}/server -fpic -c $< all: dewey_cmp.so |