Skip to content

Commit

Permalink
Merge pull request #108 from mhei/fix-manpage-default-dir
Browse files Browse the repository at this point in the history
 Change default manpage installation destination to /usr/local hierarchy
  • Loading branch information
ch-aurich authored May 21, 2017
2 parents 301c063 + 18db906 commit 3ec9813
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions ether/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ install: $(TOOLS) library
install -m ${SUID_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
check:
${SHELL} ether.sh
fresh: clean compile
Expand Down
2 changes: 1 addition & 1 deletion make.def
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ STRIP=$(CROSS)strip

ROOTFS?=
BIN=${ROOTFS}/usr/local/bin
MAN=${ROOTFS}/usr/share/man/man1
MAN=${ROOTFS}/usr/local/man/man1
DOC=${ROOTFS}/home/www/software
WWW=${ROOTFS}/home/www
FTP=${ROOTFS}/home/ftp
Expand Down
1 change: 1 addition & 0 deletions mme/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ install: $(TOOLS) library
install -m ${BIN_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
check:
${SHELL} mme.sh
fresh: clean compile
Expand Down
1 change: 1 addition & 0 deletions nvm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ install: $(TOOLS) library
install -m ${BIN_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
check:
${SHELL} nvm.sh
fresh: clean compile
Expand Down
3 changes: 2 additions & 1 deletion pib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ library:
install: $(TOOLS) library
install -m ${BIN_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f ${TOOLS}
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
check:
${SHELL} pib.sh
fresh: clean compile
Expand Down
4 changes: 2 additions & 2 deletions plc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ manuals:
install: $(TOOLS) library
install -m ${SUID_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f int6k ${TOOLS}
cd ${MAN}; rm -f int6k ${PAGES}
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
check:
${SHELL} plc.sh
fresh: clean compile
Expand Down
4 changes: 2 additions & 2 deletions slac/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ manuals:
install: compile library
install -m ${SUID_PERM} -o ${OWNER} -g ${GROUP} ${TOOLS} ${BIN}
uninstall:
cd ${BIN}; rm -f plc ${TOOLS}
cd ${MAN}; rm -f plc ${PAGES}
cd ${BIN}; rm -f ${TOOLS}
cd ${MAN}; rm -f ${PAGES}
clean:
rm -f ${TRASH} ${TOOLS}
check:
Expand Down

0 comments on commit 3ec9813

Please sign in to comment.