diff options
author | dbaker <dbaker@FreeBSD.org> | 2000-01-08 02:54:45 +0800 |
---|---|---|
committer | dbaker <dbaker@FreeBSD.org> | 2000-01-08 02:54:45 +0800 |
commit | 6f6c827b0813c946d99e9a4c07e4811d8ccb0a62 (patch) | |
tree | 1eed8669d5fe0fbac495ef393eb4f6c9574253a2 | |
parent | 94e324b9c4ed50c460eb0fc011d75774b80c65a3 (diff) | |
download | freebsd-ports-gnome-6f6c827b0813c946d99e9a4c07e4811d8ccb0a62.tar.gz freebsd-ports-gnome-6f6c827b0813c946d99e9a4c07e4811d8ccb0a62.tar.zst freebsd-ports-gnome-6f6c827b0813c946d99e9a4c07e4811d8ccb0a62.zip |
shell scripts shouldn't use INSTALL_PROGRAM. fixed.
-rw-r--r-- | misc/dnetc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dnetc/Makefile b/misc/dnetc/Makefile index 6ec87cc6c945..6ecf0eeadb12 100644 --- a/misc/dnetc/Makefile +++ b/misc/dnetc/Makefile @@ -57,7 +57,7 @@ do-install: ${INSTALL} -c -m ${SBINMODE} -o ${CLIENTUID} -g ${CLIENTGID} ${WRKSRC}/dnetc ${BINDIR} ${SED} s#CHANGETHIS#${BINDIR}# < ${FILESDIR}/dnetc.sh > ${WRKSRC}/dnetc.sh.pathnames - ${INSTALL_PROGRAM} ${WRKSRC}/dnetc.sh.pathnames ${LIBDIR}/dnetc.sh + ${INSTALL} -c -m ${SBINMODE} ${WRKSRC}/dnetc.sh.pathnames ${LIBDIR}/dnetc.sh ${INSTALL_DATA} ${FILESDIR}/INFO ${BINDIR} |