diff options
author | nork <nork@FreeBSD.org> | 2003-02-08 05:27:23 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-02-08 05:27:23 +0000 |
commit | bcaf0cc859979f817b619fb3c392cc9f40013e3e (patch) | |
tree | c6d8d26a5795ae9004c15caa3ad95ff6529be0ca /print | |
parent | 1fd574cb9715ad397dc0e1a967f6d67b2eb25333 (diff) | |
download | FreeBSD-ports-bcaf0cc859979f817b619fb3c392cc9f40013e3e.zip FreeBSD-ports-bcaf0cc859979f817b619fb3c392cc9f40013e3e.tar.gz |
Change CPPFLAGS+=/LDFLAGS+= to CPPFLAGS=/LDFLAGS=.
Submitted by: Ports Fury
Diffstat (limited to 'print')
-rw-r--r-- | print/catdvi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/catdvi/Makefile b/print/catdvi/Makefile index 211da34..2d31b17 100644 --- a/print/catdvi/Makefile +++ b/print/catdvi/Makefile @@ -24,8 +24,8 @@ ALL_TARGET= # empty MAN1= catdvi.1 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib .if !exists(/usr/include/getopt.h) LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt |