Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default manpage installation destination to /usr/local hierarchy #108

Merged
merged 2 commits into from
May 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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