diff options
author | grant <grant> | 2004-06-12 09:06:51 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-12 09:06:51 +0000 |
commit | f83c950550b6e2dff543b745c6c90c366334b9da (patch) | |
tree | f53750436966775b171b7a7624194b21a81ebaa4 | |
parent | d2ed5e4e362233e43144b539a4fa319a6a0deb9f (diff) | |
download | pkgsrc-f83c950550b6e2dff543b745c6c90c366334b9da.tar.gz |
don't call install -d with >1 directory argument.
-rw-r--r-- | devel/pilrc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/pilrc/Makefile b/devel/pilrc/Makefile index e044271cff9..21310581f93 100644 --- a/devel/pilrc/Makefile +++ b/devel/pilrc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2004/04/25 02:53:46 snj Exp $ +# $NetBSD: Makefile,v 1.22 2004/06/12 09:06:51 grant Exp $ # DISTNAME= pilrc-2.9p9 @@ -51,7 +51,8 @@ pre-patch: cd ${WRKSRC} && ${TR} -d '\015' < ${DISTDIR}/${DIFFS} \ | ${PATCH} --quiet -p1 post-install: - ${INSTALL_DATA_DIR} ${DOCDIR} ${DOCDIR}/images + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${DOCDIR}/images cd ${WRKSRC}/doc && \ ${INSTALL_DATA} archive.html download.html index.html \ contrib.html history.html manual.html ${DOCDIR} |