commit d13606881f457fdb77b95350241e29e537bfd6f2 from: Stefan Sperling date: Tue Jan 28 09:31:29 2020 UTC fix problem with 'make web-install' not finding some of the files commit - e83c06347d9516d0180594769020b3013a232414 commit + d13606881f457fdb77b95350241e29e537bfd6f2 blob - 11cc80d9e6727d8a8aeaf167d29f58c17a248541 blob + aa9e7e60b2e68ab91da464a74212dd97035cd821 --- gotweb/Makefile +++ gotweb/Makefile @@ -32,7 +32,7 @@ realinstall: ${INSTALL} -d -o root -g daemon -m 755 ${TMPL_DIR}; \ fi ${INSTALL} -c -o ${WWWUSR} -g ${WWWGRP} -m 0755 \ - files/cgi-bin/gw_tmpl/* ${TMPL_DIR} + ${.CURDIR}/files/cgi-bin/gw_tmpl/* ${TMPL_DIR} if [ ! -d ${HTTPD_DIR}/. ]; then \ ${INSTALL} -d -o root -g daemon -m 755 ${HTTPD_DIR}; \ fi @@ -42,7 +42,7 @@ realinstall: if [ ! -d ${PROG_DIR}/. ]; then \ ${INSTALL} -d -o root -g daemon -m 755 ${PROG_DIR}; \ fi - ${INSTALL} -c -o ${WWWUSR} -g ${WWWGRP} -m 0755 files/htdocs/${PROG}/* \ - ${PROG_DIR} + ${INSTALL} -c -o ${WWWUSR} -g ${WWWGRP} -m 0755 \ + ${.CURDIR}/files/htdocs/${PROG}/* ${PROG_DIR} .include