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 | c0f5eb9d9ac4f7b77e54fea627cf942ca14dca53 (patch) | |
tree | 83277aa9b912d7e9a036b31eb9ecf11fbb5148de /pkgtools | |
parent | 61b08dc28ff9dae068cc9bc26e3b24e5f445b46b (diff) | |
download | pkgsrc-c0f5eb9d9ac4f7b77e54fea627cf942ca14dca53.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).
Diffstat (limited to 'pkgtools')
-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 |