diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 09:52:21 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 09:52:21 +0800 |
commit | 553599566d995df6cf4174f74328f0d62cd46206 (patch) | |
tree | 99d43fc6f2673456a2ba2c519c99835d9954088f /editors/xemacs | |
parent | 78bc0f19a1debbbc3d2087693d67a4e7f071f396 (diff) | |
download | freebsd-ports-gnome-553599566d995df6cf4174f74328f0d62cd46206.tar.gz freebsd-ports-gnome-553599566d995df6cf4174f74328f0d62cd46206.tar.zst freebsd-ports-gnome-553599566d995df6cf4174f74328f0d62cd46206.zip |
echo -> ${ECHO}/${ECHO_MSG}
ln -> ${LN}
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index b1372dee76ee..6b616cb56e15 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -48,15 +48,15 @@ PLIST_SUB= XEMACS_VER=${XEMACS_VER} XEMACS_ARCH=${XEMACS_ARCH} # Have pre-fetch: .if !defined(USE_MULE) - @echo "To compile in the MULE features, set the environment variable USE_MULE" + @${ECHO_MSG} "To compile in the MULE features, set the environment variable USE_MULE" .endif .if defined(HAVE_MOTIF) .if !defined(MOTIF_STATIC) - @echo "" - @echo "If your MOTIF library is actually lesstif, you might occasionally" - @echo "experience locked-up frames." - @echo "In this case, set the environment variable MOTIF_STATIC and recompile, " - @echo "which will force the use of athena widgets for dialogs." + @${ECHO_MSG} "" + @${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally" + @${ECHO_MSG} "experience locked-up frames." + @${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, " + @${ECHO_MSG} "which will force the use of athena widgets for dialogs." .endif .endif @@ -79,7 +79,7 @@ WITH_OFFIX?= --with-offix=no .endif post-install: - ln -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21 + ${LN} -s xemacs-${XEMACS_VER} ${PREFIX}/bin/xemacs21 .for file in b2m ctags etags gnuclient xemacs-${XEMACS_VER} strip ${PREFIX}/bin/${file} .endfor |