diff options
author | scheidell <scheidell@FreeBSD.org> | 2012-01-29 04:20:02 +0800 |
---|---|---|
committer | scheidell <scheidell@FreeBSD.org> | 2012-01-29 04:20:02 +0800 |
commit | 8efbb8152e3e0d543a7ac3311b3e105fba87d33f (patch) | |
tree | aa20a3cd5d8e7a3214948c9048adb42c080dc07e /net-mgmt | |
parent | 8ada8b0f8eaa2f04edd8978677f2062356907881 (diff) | |
download | freebsd-ports-gnome-8efbb8152e3e0d543a7ac3311b3e105fba87d33f.tar.gz freebsd-ports-gnome-8efbb8152e3e0d543a7ac3311b3e105fba87d33f.tar.zst freebsd-ports-gnome-8efbb8152e3e0d543a7ac3311b3e105fba87d33f.zip |
- update makefile, install cgiprograms with INSTALL_PROGRAM (was INSTALL_DATA) [1]
PR: ports/159619 [2]
Submitted by: Olexandr <raven77@ukr.net> [2]
Reviewed by: scheidell [1]
Approved by: maintainer (timeout, 5 months), gabor (mentor, implicit)
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/netams/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/netams/Makefile b/net-mgmt/netams/Makefile index efa26c3655b8..e1c66966c8b9 100644 --- a/net-mgmt/netams/Makefile +++ b/net-mgmt/netams/Makefile @@ -146,10 +146,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/cgi-bin/images/${f} ${WWWDIR}/images/ .endfor .for f in ${USERCGI} - ${INSTALL_DATA} ${WRKSRC}/cgi-bin/${f} ${WWWDIR}/cgi-bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/cgi-bin/${f} ${WWWDIR}/cgi-bin/ .endfor .for f in ${ADMINCGI} - ${INSTALL_DATA} ${WRKSRC}/cgi-bin/admin/${f} ${WWWDIR}/cgi-bin/admin/ + ${INSTALL_PROGRAM} ${WRKSRC}/cgi-bin/admin/${f} ${WWWDIR}/cgi-bin/admin/ .endfor .endif .for f in ${MAN8} |