diff options
author | nork <nork@FreeBSD.org> | 2002-12-11 16:33:47 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2002-12-11 16:33:47 +0800 |
commit | 0118b87386a3c655c9eb9320b15d3f4ec3820046 (patch) | |
tree | b27e0876ac9a522ce3a7849d56246b95b9da5b81 /polish | |
parent | dc88c0e98233a52e65c54a93db3643ff324741d1 (diff) | |
download | freebsd-ports-gnome-0118b87386a3c655c9eb9320b15d3f4ec3820046.tar.gz freebsd-ports-gnome-0118b87386a3c655c9eb9320b15d3f4ec3820046.tar.zst freebsd-ports-gnome-0118b87386a3c655c9eb9320b15d3f4ec3820046.zip |
Fix unassociated shell command.
Pointy hat to: nork
Reported by: make describe ECHO_MSG='echo > /dev/null'
Diffstat (limited to 'polish')
-rw-r--r-- | polish/gnugadu/Makefile | 3 | ||||
-rw-r--r-- | polish/gnugadu2/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/polish/gnugadu/Makefile b/polish/gnugadu/Makefile index 6e8350d53f84..7769c2ef9648 100644 --- a/polish/gnugadu/Makefile +++ b/polish/gnugadu/Makefile @@ -29,16 +29,17 @@ PKGNAMESUFFIX= -esound CONFIGURE_ARGS+= --disable-esd .endif -pre-everything:: .if defined(WITH_GNOME) CONFIGURE_ARGS+= --enable-gnome USE_GNOME= yes .else +pre-everything:: @${ECHO_MSG} "Define WITH_GNOME to include GNOME support" .endif .if defined(WITH_DOCKAPP) CONFIGURE_ARGS+= --enable-dockapp .else +pre-everything:: @${ECHO_MSG} "Define WITH_DOCKAPP to include WindowMaker support" .endif diff --git a/polish/gnugadu2/Makefile b/polish/gnugadu2/Makefile index 6e8350d53f84..7769c2ef9648 100644 --- a/polish/gnugadu2/Makefile +++ b/polish/gnugadu2/Makefile @@ -29,16 +29,17 @@ PKGNAMESUFFIX= -esound CONFIGURE_ARGS+= --disable-esd .endif -pre-everything:: .if defined(WITH_GNOME) CONFIGURE_ARGS+= --enable-gnome USE_GNOME= yes .else +pre-everything:: @${ECHO_MSG} "Define WITH_GNOME to include GNOME support" .endif .if defined(WITH_DOCKAPP) CONFIGURE_ARGS+= --enable-dockapp .else +pre-everything:: @${ECHO_MSG} "Define WITH_DOCKAPP to include WindowMaker support" .endif |