stagit

Fork of stagit - for personal repository
git clone git://git.dimitrijedobrota.com/stagit.git
Log | Files | Refs | README | LICENSE

commit 68557480fcafcb478cfceb5cf40bbd75c72175da
parent 21d18278c52a0ab5f11106439b6817b53f959cb5
Author: Dimitrije Dobrota <mail@dimitrijedobrota.com>
Date:   Sun,  8 Aug 2021 12:21:09 +0200

Adjust Makefile to the example script rename

Diffstat:
MMakefile | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -54,7 +54,7 @@ dist: mkdir -p ${NAME}-${VERSION} cp -f ${MAN1} ${HDR} ${SRC} ${COMPATSRC} ${DOC} \ Makefile favicon.png logo.png style.css \ - example_create.sh example_post-receive.sh \ + create.sh post-receive.sh \ ${NAME}-${VERSION} # make tarball tar -cf - ${NAME}-${VERSION} | \ @@ -82,8 +82,8 @@ install: all cp -f style.css\ favicon.png\ logo.png\ - example_create.sh\ - example_post-receive.sh\ + create.sh\ + post-receive.sh\ README\ ${DESTDIR}${DOCPREFIX} # installing manual pages. @@ -99,8 +99,8 @@ uninstall: ${DESTDIR}${DOCPREFIX}/style.css\ ${DESTDIR}${DOCPREFIX}/favicon.png\ ${DESTDIR}${DOCPREFIX}/logo.png\ - ${DESTDIR}${DOCPREFIX}/example_create.sh\ - ${DESTDIR}${DOCPREFIX}/example_post-receive.sh\ + ${DESTDIR}${DOCPREFIX}/create.sh\ + ${DESTDIR}${DOCPREFIX}/post-receive.sh\ ${DESTDIR}${DOCPREFIX}/README -rmdir ${DESTDIR}${DOCPREFIX} # removing manual pages.