diff options
author | gabor <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
commit | 1f31ff34b514d77244257a9a94391d3aae8edab0 (patch) | |
tree | a676504f8edaca31196a243aa7393f33f26078fa /www/mini_httpd | |
parent | fb4c30cf2c9bc123dc0c05a0e070f2c48e83be57 (diff) | |
download | freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.tar.gz freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.tar.zst freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.zip |
- Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.
Sponsored by: Google Summer of Code 2007
Approved by: portmgr (pav)
Diffstat (limited to 'www/mini_httpd')
-rw-r--r-- | www/mini_httpd/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/mini_httpd/Makefile b/www/mini_httpd/Makefile index ca915520c8ef..1b7e27da2009 100644 --- a/www/mini_httpd/Makefile +++ b/www/mini_httpd/Makefile @@ -24,14 +24,14 @@ post-build: -${MV} ${WRKSRC}/htpasswd.1 ${WRKSRC}/htpasswd.8 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mini_httpd ${TARGETDIR}/sbin/ - ${INSTALL_PROGRAM} ${WRKSRC}/htpasswd ${TARGETDIR}/sbin/ - ${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd_wrapper ${TARGETDIR}/sbin/ - ${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd.sh ${TARGETDIR}/etc/rc.d/ + ${INSTALL_PROGRAM} ${WRKSRC}/mini_httpd ${PREFIX}/sbin/ + ${INSTALL_PROGRAM} ${WRKSRC}/htpasswd ${PREFIX}/sbin/ + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd_wrapper ${PREFIX}/sbin/ + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd.sh ${PREFIX}/etc/rc.d/ @for file in ${MAN8}; \ do \ - ${INSTALL_MAN} ${WRKSRC}/$$file ${TARGETDIR}/man/man8/; \ + ${INSTALL_MAN} ${WRKSRC}/$$file ${PREFIX}/man/man8/; \ done - ${INSTALL_DATA} ${WRKSRC}/mini_httpd.cnf ${TARGETDIR}/etc/mini_httpd.cnf.sample + ${INSTALL_DATA} ${WRKSRC}/mini_httpd.cnf ${PREFIX}/etc/mini_httpd.cnf.sample .include <bsd.port.mk> |