diff options
author | asami <asami@FreeBSD.org> | 1998-07-21 02:57:55 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-07-21 02:57:55 +0800 |
commit | 3d1ef1a6d65826772d211cf4beb2a23c36026c79 (patch) | |
tree | 5f4f85042c9ad73ee3b069b47549144e5f3c682c /graphics | |
parent | 93bdb2ed454411e18dfd3165b94db6fb0aa45678 (diff) | |
download | freebsd-ports-graphics-3d1ef1a6d65826772d211cf4beb2a23c36026c79.tar.gz freebsd-ports-graphics-3d1ef1a6d65826772d211cf4beb2a23c36026c79.tar.zst freebsd-ports-graphics-3d1ef1a6d65826772d211cf4beb2a23c36026c79.zip |
No need to use += for a variable defined only once.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gtkdps/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/gtkdps/Makefile b/graphics/gtkdps/Makefile index c6b639875c5..28736fde807 100644 --- a/graphics/gtkdps/Makefile +++ b/graphics/gtkdps/Makefile @@ -3,7 +3,7 @@ # Date created: 21 April 1998 # Whom: Yukihiro Nakai <Nakai@technologist.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/07/13 02:21:33 steve Exp $ # DISTNAME= gtkDPS-0.2.11 @@ -16,8 +16,8 @@ MAINTAINER= Nakai@technologist.com LIB_DEPENDS= gtk\\.1:${PORTSDIR}/x11/gtk BUILD_DEPENDS= pswrap:${PORTSDIR}/x11/dgs -CONFIGURE_ARGS+= --with-dps-includes=${X11BASE}/include \ - --with-dps-libraries=${X11BASE}/lib +CONFIGURE_ARGS= --with-dps-includes=${X11BASE}/include \ + --with-dps-libraries=${X11BASE}/lib GNU_CONFIGURE= yes USE_X11= yes |