diff options
author | wosch <wosch@FreeBSD.org> | 1998-01-03 14:06:26 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1998-01-03 14:06:26 +0000 |
commit | d12b0e463898ae2f724efb43eda85634212937dd (patch) | |
tree | 2356db676f556467301881e9ed38160174a5a980 /share/info/Makefile | |
parent | a29bc9801d8480800b1ff1dadc1f867d3dfab8fb (diff) | |
download | FreeBSD-src-d12b0e463898ae2f724efb43eda85634212937dd.zip FreeBSD-src-d12b0e463898ae2f724efb43eda85634212937dd.tar.gz |
Use INFO* variables.
Diffstat (limited to 'share/info/Makefile')
-rw-r--r-- | share/info/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/share/info/Makefile b/share/info/Makefile index 0360a58..b8d9e73 100644 --- a/share/info/Makefile +++ b/share/info/Makefile @@ -1,15 +1,16 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 +# $Id$ NOOBJ= noobj all clean cleandir depend lint tags: beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 dir-tmpl \ - ${DESTDIR}${BINDIR}/info/dir-tmpl - if [ ! -f ${DESTDIR}${BINDIR}/info/dir ]; then \ - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 dir-tmpl \ - ${DESTDIR}${BINDIR}/info/dir ; \ - fi + ${INSTALL} -c -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} dir-tmpl \ + ${DESTDIR}${INFODIR}/dir-tmpl +.if !exists(${DESTDIR}${INFODIR}/dir) + ${INSTALL} -c -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} \ + dir-tmpl ${DESTDIR}${INFODIR}/dir +.endif .include <bsd.prog.mk> |