diff options
author | grant <grant@pkgsrc.org> | 2004-07-24 02:52:27 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-07-24 02:52:27 +0000 |
commit | 0d48368d9f4123cab4ca97a70db296400d16783b (patch) | |
tree | 082325777dfbe8986385c239d7d0e658680221b7 /net | |
parent | ecb0600763dfdeb0b2f862f4b5f0b80633c472ee (diff) | |
download | pkgsrc-0d48368d9f4123cab4ca97a70db296400d16783b.tar.gz |
don't call "install -d" with >1 argument.
Diffstat (limited to 'net')
-rw-r--r-- | net/ddclient/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ddclient/Makefile b/net/ddclient/Makefile index 22c53abeeab..949670d5c25 100644 --- a/net/ddclient/Makefile +++ b/net/ddclient/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/03/31 01:40:04 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2004/07/24 02:52:27 grant Exp $ DISTNAME= ddclient-3.6.2 CATEGORIES= net @@ -39,7 +39,8 @@ do-build: # empty do-install: ${INSTALL_SCRIPT} ${WRKSRC}/ddclient ${PREFIX}/sbin - ${INSTALL_DATA_DIR} ${DOCDIR} ${EGDIR} + ${INSTALL_DATA_DIR} ${DOCDIR} + ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} |