diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-12-02 06:20:35 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-12-02 06:20:35 +0000 |
commit | 253596cc8759834b6462b942831dec834b99ca83 (patch) | |
tree | 9d4d0de6b49f4b5c113e0cb9b851bdc41f904e50 /www | |
parent | Use ${WRKDIRPREFIX} correctly. (diff) |
Pre-create ${PREFIX}/www/data -- the mkdir in port's own installation does
not include a "-p".
Notes
Notes:
svn path=/head/; revision=15053
Diffstat (limited to 'www')
-rw-r--r-- | www/WebMagick/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/WebMagick/Makefile b/www/WebMagick/Makefile index a4ccbac1f034..f28fc45fa80b 100644 --- a/www/WebMagick/Makefile +++ b/www/WebMagick/Makefile @@ -4,7 +4,7 @@ # Date created: 20 May 1998 # Whom: ache # -# $Id: Makefile,v 1.8 1998/09/22 23:33:08 asami Exp $ +# $Id: Makefile,v 1.9 1998/10/07 10:15:19 ache Exp $ # DISTNAME= WebMagick-1.44 @@ -24,6 +24,9 @@ CONFIGURE_ENV= webmagick_cv_rootpath=${PREFIX}/www/data \ webmagick_cv_maptype=ncsa \ PERL=${PERL} +pre-install: + @${MKDIR} ${PREFIX}/www/data + post-install: cd ${WRKSRC}; \ if [ ! -f ${PREFIX}/etc/webmagickrc ] ; then \ |