From 9a493931b56e5dfc949a9b6c4df37938b4c6b6e8 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Fri, 8 Jan 2016 11:48:05 +0100 Subject: [PATCH] fix installation path of man page --- sndiod/Makefile.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sndiod/Makefile.in b/sndiod/Makefile.in index 43b8172..eff4bf7 100644 --- a/sndiod/Makefile.in +++ b/sndiod/Makefile.in @@ -15,28 +15,28 @@ LDADD = -lsndio @ldadd@ # # binaries, documentation, man pages and examples will be installed in -# ${BIN_DIR}, ${MAN1_DIR} +# ${BIN_DIR}, ${MAN8_DIR} # BIN_DIR = @bindir@ -MAN1_DIR = @mandir@/man1 +MAN8_DIR = @mandir@/man8 # # programs to build # PROG = sndiod -MAN1 = sndiod.1 +MAN8 = sndiod.8 -all: ${PROG} ${MAN1} +all: ${PROG} install: - mkdir -p ${DESTDIR}${BIN_DIR} ${DESTDIR}${MAN1_DIR} - rm -f ${DESTDIR}${BIN_DIR}/${PROG} ${DESTDIR}${MAN1_DIR}/${MAN1} + mkdir -p ${DESTDIR}${BIN_DIR} ${DESTDIR}${MAN8_DIR} + rm -f ${DESTDIR}${BIN_DIR}/${PROG} ${DESTDIR}${MAN8_DIR}/${MAN8} cp ${PROG} ${DESTDIR}${BIN_DIR} - cp ${MAN1} ${DESTDIR}${MAN1_DIR} + cp ${MAN8} ${DESTDIR}${MAN8_DIR} uninstall: cd ${DESTDIR}${BIN_DIR} && rm -f ${PROG} - cd ${DESTDIR}${MAN1_DIR} && rm -f ${MAN1} + cd ${DESTDIR}${MAN8_DIR} && rm -f ${MAN8} clean: rm -f -- *.o ${PROG}