diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 2000-04-11 04:08:20 +0800 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 2000-04-11 04:08:20 +0800 |
commit | 4e55c2c423785de52aa299df49742b7fae37b311 (patch) | |
tree | 30bf90ec1ec46938762cf10038482a8b79e2c97b /www/mod_php3 | |
parent | dbdc33e04049e77e34d976667f5bdcd7eb8f3ff5 (diff) | |
download | freebsd-ports-gnome-4e55c2c423785de52aa299df49742b7fae37b311.tar.gz freebsd-ports-gnome-4e55c2c423785de52aa299df49742b7fae37b311.tar.zst freebsd-ports-gnome-4e55c2c423785de52aa299df49742b7fae37b311.zip |
Accidentally undefined DISTFILES which made WRKSRC
bogus.
Noticed by: "Matt M." <matt@boda.virtualave.net>
Diffstat (limited to 'www/mod_php3')
-rw-r--r-- | www/mod_php3/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/mod_php3/Makefile b/www/mod_php3/Makefile index cb98252dcfc0..a645708536bc 100644 --- a/www/mod_php3/Makefile +++ b/www/mod_php3/Makefile @@ -38,7 +38,8 @@ MASTER_SITES= http://www.apache.org/dist/ \ http://php3.globe.de/${PHP_DISTDIR}/ \ ftp://ftp.blatzheim.com/pub/mod_ssl/ \ ftp://ftp.fu-berlin.de/unix/security/mod_ssl/ -DISTFILES= apache_${VERSION_APACHE}.tar.gz php-${VERSION_PHP}.tar.gz +DISTNAME= apache_${VERSION_APACHE} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} php-${VERSION_PHP}${EXTRACT_SUFX} MAINTAINER= dirk@FreeBSD.org |