diff options
author | reg <reg@FreeBSD.org> | 2000-10-06 13:49:27 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-10-06 13:49:27 +0800 |
commit | 1748c5c57f1ac060bc85dac12eb53915b21e5ed6 (patch) | |
tree | c5571658fc9c31e22908279f34fc284aa0276247 /Mk | |
parent | d3ce0d580621e833b14953e41b680978ec93fbde (diff) | |
download | freebsd-ports-gnome-1748c5c57f1ac060bc85dac12eb53915b21e5ed6.tar.gz freebsd-ports-gnome-1748c5c57f1ac060bc85dac12eb53915b21e5ed6.tar.zst freebsd-ports-gnome-1748c5c57f1ac060bc85dac12eb53915b21e5ed6.zip |
Fix WANT related breakage by using a more conventional method of echoing...
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gnome.mk | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk index e89669b1c7c5..c659c06903d5 100644 --- a/Mk/bsd.gnome.mk +++ b/Mk/bsd.gnome.mk @@ -82,8 +82,11 @@ ESD_CONFIG?= ${LOCALBASE}/bin/esd-config .if exists(${ESD_CONFIG}) HAVE_ESOUND= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with ESound support," \ - "hit Ctrl-C right now and use \"make WITH_ESOUND=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with ESound support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_ESOUND=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -99,8 +102,11 @@ GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config .if exists(${GLIB_CONFIG}) HAVE_GLIB= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GLib support," \ - "hit Ctrl-C right now and use \"make WITH_GLIB=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GLib support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GLIB=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -116,8 +122,11 @@ GTK_CONFIG?= ${X11BASE}/bin/gtk12-config .if exists(${GTK_CONFIG}) HAVE_GTK= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GTK+ support," \ - "hit Ctrl-C right now and use \"make WITH_GTK=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GTK+ support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GTK=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -133,8 +142,11 @@ IMLIB_CONFIG?= ${X11BASE}/bin/imlib-config .if exists(${IMLIB_CONFIG}) HAVE_IMLIB= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with Imlib support," \ - "hit Ctrl-C right now and use \"make WITH_IMLIB=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with Imlib support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_IMLIB=yes\"" + @${ECHO_MSG} .endif .endif .endif @@ -150,8 +162,11 @@ GNOME_CONFIG?= ${X11BASE}/bin/gnome-config .if exists(${GNOME_CONFIG}) HAVE_GNOME= yes .else -GNOME_OPTION_MSG+= "" "If you want to compile with GNOME support," \ - "hit Ctrl-C right now and use \"make WITH_GNOME=yes\"" "" +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with GNOME support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GNOME=yes\"" + @${ECHO_MSG} .endif .endif .endif |