diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-17 11:18:10 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-17 11:18:10 +0800 |
commit | e419a294642e618996f0d402854260ede80d9b52 (patch) | |
tree | 0ba246bfa4f09ba4dfcf279ef46193753fb1b674 /games | |
parent | 4fcaf888d6e743e3b5240efac3321e5a5a33c290 (diff) | |
download | freebsd-ports-gnome-e419a294642e618996f0d402854260ede80d9b52.tar.gz freebsd-ports-gnome-e419a294642e618996f0d402854260ede80d9b52.tar.zst freebsd-ports-gnome-e419a294642e618996f0d402854260ede80d9b52.zip |
Remove the deprecated -fprermissive flag from CPPFLAGS as this breaks the
build on -CURRENT.
Thanks to bland for spotting the problem.
Reported by: bento via kris
Diffstat (limited to 'games')
-rw-r--r-- | games/gnomoku/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/gnomoku/Makefile b/games/gnomoku/Makefile index bdf2a7e7d45f..e11ed51e8e01 100644 --- a/games/gnomoku/Makefile +++ b/games/gnomoku/Makefile @@ -20,7 +20,7 @@ USE_X_PREFIX= yes USE_GNOME= gnomeprefix gnomehack gnomelibs USE_REINPLACE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-fpermissive -I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" .include <bsd.port.mk> |