diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-14 07:51:23 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-14 07:51:23 +0000 |
commit | e28de47a8bc8123771aa5acbf808c7fe9f9ca415 (patch) | |
tree | 785553744320a4486c3fb4647b12a1b812adb9af /www/znavigator | |
parent | Fix creative capitalization of variable name, which led to the installation (diff) |
Change REINPLACE_CMD to a real SED since it would otherwise try to
modify the files/ directory.
Noticed by: bento
Notes
Notes:
svn path=/head/; revision=70084
Diffstat (limited to 'www/znavigator')
-rw-r--r-- | www/znavigator/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/www/znavigator/Makefile b/www/znavigator/Makefile index fdae6610d018..4b658dac9cba 100644 --- a/www/znavigator/Makefile +++ b/www/znavigator/Makefile @@ -17,8 +17,6 @@ MAINTAINER= nbm@FreeBSD.org RUN_DEPENDS= ${LOCALBASE}/${SZOPEBASEDIR}/z2.py:${PORTSDIR}/www/zope NO_BUILD= YES -USE_PERL5= yes -USE_REINPLACE= yes # You can change this in the environment if you like. SZOPEBASEDIR?= www/Zope @@ -40,7 +38,7 @@ do-install: ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${ZOPEPRODUCTNAME}/ @${CP} ${ZOPEPRODUCTSRC}/demo/navigator_demo.zexp \ ${ZOPEBASEDIR}/import - @${REINPLACE_CMD} -e \ + @${SED} -e \ 's#%%PREFIX%%#${PREFIX}#' ${FILESDIR}/MESSAGE > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} |