aboutsummaryrefslogtreecommitdiffstats
path: root/x11/libgnome
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1998-09-14 18:07:36 +0800
committerasami <asami@FreeBSD.org>1998-09-14 18:07:36 +0800
commitd13a5b2108e222f90f91368b24ee422cff69dc87 (patch)
tree8fdf3327d1d5de44890589fc1560ceb60e9f11d7 /x11/libgnome
parentd6c2ceec165b0dcdb2ad0fb7cf0213483ac00470 (diff)
downloadfreebsd-ports-graphics-d13a5b2108e222f90f91368b24ee422cff69dc87.tar.gz
freebsd-ports-graphics-d13a5b2108e222f90f91368b24ee422cff69dc87.tar.zst
freebsd-ports-graphics-d13a5b2108e222f90f91368b24ee422cff69dc87.zip
Don't use += for a variable defined only once. Doing so will suggest
this Makefile is included from elsewhere, or is adding to a variable defined in the environment, or something like that.
Diffstat (limited to 'x11/libgnome')
-rw-r--r--x11/libgnome/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/libgnome/Makefile b/x11/libgnome/Makefile
index f0aa0b2fc61..df70cc876db 100644
--- a/x11/libgnome/Makefile
+++ b/x11/libgnome/Makefile
@@ -3,7 +3,7 @@
# Date created: 17 June 1998
# Whom: Yukihiro Nakai <Nakai@technologist.com>
#
-# $Id$
+# $Id: Makefile,v 1.1.1.1 1998/09/06 06:34:19 vanilla Exp $
#
DISTNAME= gnome-libs-0.27
@@ -25,7 +25,7 @@ LIB_DEPENDS+= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --localstatedir=${PREFIX}/share/gnome \
+CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
--datadir=${PREFIX}/share/gnome
CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib -lxpg4"