diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-08 05:27:23 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-08 05:27:23 +0000 |
commit | d6428c128a0c89c05e74323a0fae273668734f0e (patch) | |
tree | 8162070e5da83b9789930ed11293908dd54b3fb6 /games | |
parent | Do not use %SUBDIR% in MASTER_SITES, since it will not be (diff) |
Change CPPFLAGS+=/LDFLAGS+= to CPPFLAGS=/LDFLAGS=.
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=75089
Diffstat (limited to '')
-rw-r--r-- | games/wmpuzzle/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/wmpuzzle/Makefile b/games/wmpuzzle/Makefile index ab50256de774..8fda195dee8e 100644 --- a/games/wmpuzzle/Makefile +++ b/games/wmpuzzle/Makefile @@ -31,8 +31,8 @@ MAN6= wmpuzzle.6 BSDIMAGES= daemon.xpm -CPPFLAGS+= -I${X11BASE}/include -LDFLAGS+= -L${X11BASE}/lib +CPPFLAGS= -I${X11BASE}/include +LDFLAGS= -L${X11BASE}/lib .if !exists(/usr/include/getopt.h) LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt |