diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-29 22:41:55 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-06-29 22:41:55 +0000 |
commit | 8faa41a36c1dfe64ebe3370bc3d70cceed352fa2 (patch) | |
tree | 52c7a845b1c51565d520510b7f7e3c4c28d8af6b /Mk | |
parent | Fix Build. (diff) |
Fix a bug where by "yes" would still be included in USE_GNOME for older
ports.
Spotted by: arved
Notes
Notes:
svn path=/head/; revision=83867
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gnome.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk index 06b7fce65307..62edced1576b 100644 --- a/Mk/bsd.gnome.mk +++ b/Mk/bsd.gnome.mk @@ -477,7 +477,8 @@ USE_GNOME+= gtk12 # Hack USE_GNOME to the modular infrastructure for port maintainers that # didn't do so themselves. New ports should NOT set USE_GNOME=yes. . if ${USE_GNOME}=="yes" -USE_GNOME+=gnomeprefix gnomehack gtkhtml libpanel +USE_GNOME:= ${USE_GNOME:S/yes//} +USE_GNOME+= gnomeprefix gnomehack gtkhtml libpanel . endif # First of all expand all USE_GNOME_IMPL recursively |