diff options
author | danfe <danfe@FreeBSD.org> | 2008-11-09 15:10:16 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2008-11-09 15:10:16 +0800 |
commit | 7bc8db4b71f7c10679750b0d54f9d0d999d63b78 (patch) | |
tree | 107ab53acc37b203b6a796c216582ca4ec7c499b /x11-wm | |
parent | 6438f2c6deb0018739abb364b89c3c20379b4747 (diff) | |
download | freebsd-ports-gnome-7bc8db4b71f7c10679750b0d54f9d0d999d63b78.tar.gz freebsd-ports-gnome-7bc8db4b71f7c10679750b0d54f9d0d999d63b78.tar.zst freebsd-ports-gnome-7bc8db4b71f7c10679750b0d54f9d0d999d63b78.zip |
Fix classic case of bad rdeps = bdeps assignment. Previously, things like
gmake(1) would have ended up in rdeps.
Approved by: maintainer
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/emerald/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-wm/emerald/Makefile b/x11-wm/emerald/Makefile index cee4c412d065..3df3dea42de2 100644 --- a/x11-wm/emerald/Makefile +++ b/x11-wm/emerald/Makefile @@ -15,7 +15,7 @@ MAINTAINER= rnoland@FreeBSD.org COMMENT= Emerald Window Decorator BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz -RUN_DEPENDS+= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} INSTALLS_ICONS= yes GNU_CONFIGURE= yes |