mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
Make sure that info files never hit the "bin" dist.
This commit is contained in:
parent
499454c6e9
commit
d80a026702
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6309
@ -1,4 +1,4 @@
|
||||
# $Id: bsd.info.mk,v 1.9 1995/01/23 20:53:38 jkh Exp $
|
||||
# $Id: bsd.info.mk,v 1.10 1995/02/02 04:53:30 jkh Exp $
|
||||
|
||||
BINMODE= 444
|
||||
BINDIR?= /usr/share/info
|
||||
@ -17,7 +17,12 @@ MAKEINFOFLAGS?= # --no-split would simplify some things, e.g., compression
|
||||
|
||||
all: ${INFO:S/$/.info/g}
|
||||
|
||||
# The default is "info" and it can never be "bin"
|
||||
DISTRIBUTION?= info
|
||||
.if ${DISTRIBUTION} == "bin"
|
||||
DISTRIBUTION= info
|
||||
.endif
|
||||
|
||||
.if !target(distribute)
|
||||
distribute:
|
||||
cd ${.CURDIR} ; $(MAKE) install DESTDIR=${RELEASEDIR}/${DISTRIBUTION} SHARED=copies
|
||||
|
Loading…
Reference in New Issue
Block a user