diff options
author | Volker Stolz <vs@FreeBSD.org> | 2006-09-07 10:31:54 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2006-09-07 10:31:54 +0000 |
commit | 22e96d488458c646b1aa39d81498163178a7e364 (patch) | |
tree | ca26d5881bd116d50d9360861e8867011fa0912b | |
parent | Remove stale files. (diff) |
Fix typos wrt. Makefile variables like $FOO}
PR: ports/102833
Submitted by: Dmitry Marakasov
Notes
Notes:
svn path=/head/; revision=172464
-rw-r--r-- | japanese/ptex-base/Makefile | 2 | ||||
-rw-r--r-- | math/pari/Makefile | 2 | ||||
-rw-r--r-- | misc/posixtestsuite/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/rancid-devel/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/rancid/Makefile | 2 | ||||
-rw-r--r-- | www/pubcookie-login-server/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/japanese/ptex-base/Makefile b/japanese/ptex-base/Makefile index 3e9803bc31c2..c2f112b9caf7 100644 --- a/japanese/ptex-base/Makefile +++ b/japanese/ptex-base/Makefile @@ -153,7 +153,7 @@ pre-install: @if [ ! -d ${TEXMF_TREE}/dvipdfm ]; then \ ${LN} -fs ${TEXMF_TREE}/dvipdfm-teTeX-dist ${TEXMF_TREE}/dvipdfm; \ fi - @if [ ! -e $TEXMF_TREE}/web2c/texmf.cnf ]; then \ + @if [ ! -e ${TEXMF_TREE}/web2c/texmf.cnf ]; then \ ${LN} -fs ${TEXMF_TREE}/web2c/texmf.cnf-teTeX-dist ${TEXMF_TREE}/web2c/texmf.cnf; \ fi @${RM} ${TEXMF_TREE}/ls-R diff --git a/math/pari/Makefile b/math/pari/Makefile index fad156b67eaa..8a8962c0839f 100644 --- a/math/pari/Makefile +++ b/math/pari/Makefile @@ -42,7 +42,7 @@ HAVE_PERL!= ${WHICH} perl || ${ECHO} nope .if ${HAVE_PERL} != "nope" PLIST= ${PKGDIR}/pkg-plist.emacs.perl .else -PLIST= ${PKGDIR/pkg-plit.emacs.noperl +PLIST= ${PKGDIR}/pkg-plit.emacs.noperl .endif .else .if ${HAVE_PERL} != "nope" diff --git a/misc/posixtestsuite/Makefile b/misc/posixtestsuite/Makefile index 2c8e694c7265..61758f23a122 100644 --- a/misc/posixtestsuite/Makefile +++ b/misc/posixtestsuite/Makefile @@ -96,7 +96,7 @@ run: aclean rerun regression: run @${ECHO} "Show regression log..." @(cd ${WRKSRC} && diff -u ${FILESDIR}/${REGR_LOG} ${RUN_RESULT}) > ${LOCAL_REGR_LOG} - @[ -z ${LOCAL_REGR_LOG ] || ( ${ECHO} "No regression detected"; exit 0 ) + @[ -z ${LOCAL_REGR_LOG} ] || ( ${ECHO} "No regression detected"; exit 0 ) @${ECHO} "Regression log stored at ${LOCAL_REGR_LOG}" .include <bsd.port.post.mk> diff --git a/net-mgmt/rancid-devel/Makefile b/net-mgmt/rancid-devel/Makefile index ea9eb3d67e3e..15b909a4c676 100644 --- a/net-mgmt/rancid-devel/Makefile +++ b/net-mgmt/rancid-devel/Makefile @@ -63,7 +63,7 @@ post-install: ${ECHO} " : *** review ${file}.sample for new/deprecated switches or install in place ${file}"; \ fi .endfor - @ if [ -f ${PREFIX}/rancid/$NEWERCONFIG_FILE1} ] ; then \ + @ if [ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE1} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${NEWERCONFIG_FILE1} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/rancid.conf. Merge from sample and old file "; \ fi diff --git a/net-mgmt/rancid/Makefile b/net-mgmt/rancid/Makefile index ea9eb3d67e3e..15b909a4c676 100644 --- a/net-mgmt/rancid/Makefile +++ b/net-mgmt/rancid/Makefile @@ -63,7 +63,7 @@ post-install: ${ECHO} " : *** review ${file}.sample for new/deprecated switches or install in place ${file}"; \ fi .endfor - @ if [ -f ${PREFIX}/rancid/$NEWERCONFIG_FILE1} ] ; then \ + @ if [ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE1} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${NEWERCONFIG_FILE1} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/rancid.conf. Merge from sample and old file "; \ fi diff --git a/www/pubcookie-login-server/Makefile b/www/pubcookie-login-server/Makefile index 93063711d4b5..1275699addbd 100644 --- a/www/pubcookie-login-server/Makefile +++ b/www/pubcookie-login-server/Makefile @@ -83,6 +83,6 @@ Makefile.templates: configure ${ECHO_CMD} "# Generated with Makefile.templates target" > Makefile.templates ${ECHO_CMD} "LOGIN_TEMPLATES+=" `cd ${WRKSRC} && make -V LOGIN_TEMPLATES | ${SED} -e 's| *./src/login_templates.generic/| |g'` >> Makefile.templates ${ECHO_CMD} "LOGIN_IMAGES+=" `cd ${WRKSRC} && make -V LOGIN_IMAGES | ${SED} -e 's| *./src/login_templates.generic/images/| |g'` >> Makefile.templates - ${CAT{ Makefile.templates + ${CAT} Makefile.templates .include <bsd.port.post.mk> |