diff options
author | rse <rse@FreeBSD.org> | 1997-10-28 12:50:42 +0000 |
---|---|---|
committer | rse <rse@FreeBSD.org> | 1997-10-28 12:50:42 +0000 |
commit | 150679e3534db6098fc63c420e28775f10377d55 (patch) | |
tree | 55fca147f4415994f7345617aba706d7bbd54150 | |
parent | d1638c9a159c62435567d88d7b6e952c30ee1b89 (diff) | |
download | FreeBSD-ports-150679e3534db6098fc63c420e28775f10377d55.zip FreeBSD-ports-150679e3534db6098fc63c420e28775f10377d55.tar.gz |
Removed -p from ${MKDIR} commands to make portlint happy.
-rw-r--r-- | lang/eperl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/eperl/Makefile b/lang/eperl/Makefile index df47f8c..23a4489 100644 --- a/lang/eperl/Makefile +++ b/lang/eperl/Makefile @@ -3,7 +3,7 @@ # Date created: 03-Sep-1997 # Whom: Ralf S. Engelschall <rse@engelschall.com> # -# $Id: Makefile,v 1.14 1997/09/03 10:31:41 rse Exp $ +# $Id: Makefile,v 1.15 1997/10/28 12:43:04 rse Exp $ # DISTNAME= eperl-2.2.6 @@ -39,13 +39,13 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/eperl.1 ${PREFIX}/man/man1/eperl.1 .if !defined(NOPORTDOCS) @if [ ! -d ${PREFIX}/share/examples/eperl ]; then \ - ${MKDIR} -p ${PREFIX}/share/examples/eperl; \ + ${MKDIR} ${PREFIX}/share/examples/eperl; \ fi ${CP} ${WRKSRC}/eg/* ${PREFIX}/share/examples/eperl/ .endif .if defined(INSTALL_ALSO_AS_SSSL) @if [ ! -d ${PREFIX}/www/cgi-bin ]; then \ - ${MKDIR} -p ${PREFIX}/www/cgi-bin; \ + ${MKDIR} ${PREFIX}/www/cgi-bin; \ fi ${INSTALL_PROGRAM} ${WRKSRC}/eperl ${PREFIX}/www/cgi-bin/nph-eperl @if [ ".`grep x-httpd-eperl ${PREFIX}/etc/apache/srm.conf`" = . ]; then \ |