Makefile: example.sh -> example_create.sh - stagit-gopher - A git gopher frontend. (mirror) HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit ae93933e10045242a9e19f49a6f8499323faf7f0 DIR parent 3e73fa29e2ad40ec7d91318a83cbbedb8321e8bb HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sat, 15 Jul 2017 13:02:19 +0200 Makefile: example.sh -> example_create.sh Diffstat: M Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/Makefile b/Makefile @@ -64,7 +64,7 @@ install: all for f in ${BIN} ${SCRIPTS}; do chmod 755 ${DESTDIR}${PREFIX}/bin/$$f; done # installing example files. mkdir -p ${DESTDIR}${PREFIX}/share/${NAME} - cp -f example.sh\ + cp -f example_create.sh\ example_post-receive.sh\ README\ ${DESTDIR}${PREFIX}/share/${NAME} @@ -78,7 +78,7 @@ uninstall: for f in ${BIN} ${SCRIPTS}; do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done # removing example files. rm -f \ - ${DESTDIR}${PREFIX}/share/${NAME}/example.sh\ + ${DESTDIR}${PREFIX}/share/${NAME}/example_create.sh\ ${DESTDIR}${PREFIX}/share/${NAME}/example_post-receive.sh\ ${DESTDIR}${PREFIX}/share/${NAME}/README -rmdir ${DESTDIR}${PREFIX}/share/${NAME}