diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-03-06 11:39:27 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-03-06 11:39:27 +0000 |
commit | 42e056f1d989fe32cb819325f2e4fee4c26cd290 (patch) | |
tree | 1cc2fb958a704f393dcff8fc2300fbf9739e838c /www | |
parent | fix internationalization bug. these patches are already submitted to (diff) |
Fix the execution of the pkg-install script for the port's post-install
case. When I tested my porting work, I kept on using ``make package''
and testing the installation of the package, without testing the
"install from the port" case.
Reported by: Mike Harding <mvh@corp.namesafe.com>
Notes
Notes:
svn path=/head/; revision=39122
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_perl/Makefile | 2 | ||||
-rw-r--r-- | www/mod_perl2/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www/mod_perl/Makefile b/www/mod_perl/Makefile index 6e66540e728b..e369ec38780b 100644 --- a/www/mod_perl/Makefile +++ b/www/mod_perl/Makefile @@ -56,6 +56,6 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/src/modules/perl/*.h \ ${PREFIX}/include/apache/modules/perl ${INSTALL_PROGRAM} ${WRKSRC}/apaci/libperl.so ${PREFIX}/libexec/apache - ${SH} ${PKGINSTALL} + @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} POST-INSTALL .include <bsd.port.post.mk> diff --git a/www/mod_perl2/Makefile b/www/mod_perl2/Makefile index 6e66540e728b..e369ec38780b 100644 --- a/www/mod_perl2/Makefile +++ b/www/mod_perl2/Makefile @@ -56,6 +56,6 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/src/modules/perl/*.h \ ${PREFIX}/include/apache/modules/perl ${INSTALL_PROGRAM} ${WRKSRC}/apaci/libperl.so ${PREFIX}/libexec/apache - ${SH} ${PKGINSTALL} + @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} POST-INSTALL .include <bsd.port.post.mk> |