diff options
author | pav <pav@FreeBSD.org> | 2004-11-05 20:03:13 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-11-05 20:03:13 +0800 |
commit | be33a0173e13801b0511588c612b113c26a6b132 (patch) | |
tree | f00d69cf5fc46738fe91f5c28129d814981c5350 /devel | |
parent | 2008d3cca348b36dda8b8f81c747bdac93033f8a (diff) | |
download | freebsd-ports-gnome-be33a0173e13801b0511588c612b113c26a6b132.tar.gz freebsd-ports-gnome-be33a0173e13801b0511588c612b113c26a6b132.tar.zst freebsd-ports-gnome-be33a0173e13801b0511588c612b113c26a6b132.zip |
- More touches to install-scripts: mv -> cp, correct install_script spelling
and drop chmod.
Submitted by: Ant?nio Carlos Venancio Junior <antonio@php.net> (maintainer)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pear-PEAR/Makefile.common | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/devel/pear-PEAR/Makefile.common b/devel/pear-PEAR/Makefile.common index c24240c29b06..9a36971f7eca 100644 --- a/devel/pear-PEAR/Makefile.common +++ b/devel/pear-PEAR/Makefile.common @@ -208,10 +208,9 @@ do-install-scriptfiles: do-install-scriptfiles-msg . if !empty(SCRIPTFILES) @${ECHO_MSG} "===> Installing scripts in ${SCRIPTFILESDIR}." . for file in ${SCRIPTFILES} - @${MV} ${WRKSRC}/pear-${file} ${WRKSRC}/${file} + @${CP} ${WRKSRC}/pear-${file} ${WRKSRC}/${file} @${REINPLACE_CMD} -e "s|@php_bin@|${SCRIPTFILESDIR}/php|g" ${WRKSRC}/${file} - @${INSTALL_SCRIPTS} ${WRKSRC}/${file} ${SCRIPTFILESDIR}/${file} - @${CHMOD} 555 ${SCRIPTFILESDIR}/${file} + @${INSTALL_SCRIPT} ${WRKSRC}/${file} ${SCRIPTFILESDIR}/${file} . endfor . endif |