diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-09-15 10:50:56 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-09-15 10:50:56 +0000 |
commit | 4cb24299544d42a7e1e7df2d7eccec7fd7cb3b40 (patch) | |
tree | 6a3e67c3e45f0618793ff82fb432d74840cb1e15 /graphics | |
parent | Ressurect RUN_DEPENDS. (diff) |
No need to use += for variable defined only once.
Notes
Notes:
svn path=/head/; revision=13143
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/electriceyes/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/electriceyes/Makefile b/graphics/electriceyes/Makefile index bcdf0d1315a5..e98ce9f1f9c3 100644 --- a/graphics/electriceyes/Makefile +++ b/graphics/electriceyes/Makefile @@ -3,7 +3,7 @@ # Date created: 21 August 1998 # Whom: Yukihiro Nakai <Nakai@technologist.com> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/09/06 06:45:28 vanilla Exp $ # DISTNAME= ee-0.2 @@ -18,7 +18,7 @@ LIB_DEPENDS= panel_applet\\.0:${PORTSDIR}/x11/gnomecore USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --localstatedir=${PREFIX}/share/gnome \ +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ --datadir=${PREFIX}/share/gnome \ --with-gnome=${X11BASE} CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include -I./intl" \ |