diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2003-04-10 11:58:55 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2003-04-10 11:58:55 +0000 |
commit | cd99dbc1be39647900df5b946bebcfcdb65fd0b0 (patch) | |
tree | 5c526bc1ecacc76be1722d8cc2031f3bfaa6029d /net | |
parent | d4ad766c83282853c119d71388227df633e52ab5 (diff) | |
download | pkgsrc-cd99dbc1be39647900df5b946bebcfcdb65fd0b0.tar.gz |
${INSTALL_DATA} can't create two directories at once on Solaris.
Addresses PR21086 by Rob Quinn <rquinn at sec dot sprint dot net>.
Diffstat (limited to 'net')
-rw-r--r-- | net/samba/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile index 98ddaa734a5..85c0c41971b 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.95 2003/03/16 07:57:43 martti Exp $ +# $NetBSD: Makefile,v 1.96 2003/04/10 11:58:55 uebayasi Exp $ .include "Makefile.common" @@ -71,7 +71,8 @@ post-extract: post-install: # Install Samba documentation. - ${INSTALL_DATA_DIR} ${DOCDIR} ${HTMLDIR} + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${HTMLDIR} cd ${WRKDIR}/${DISTNAME}/docs; \ ${INSTALL_DATA} announce textdocs/* ${DOCDIR}; \ ${INSTALL_DATA} Registry/*.reg ${DOCDIR}; \ |