Make this port actually install by using BSD_INSTALL_* macros, not

INSTALL_* macros (which are not what's passed in the environment).
This commit is contained in:
Satoshi Asami 1998-02-25 12:03:37 +00:00
parent 5a136a637d
commit 5f2482b873
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9926

View File

@ -25,11 +25,11 @@
bininstall: c2ps
- install -m 755 c2ps $(BIN)
+ $(INSTALL_PROGRAM) c2ps $(BIN)
+ $(BSD_INSTALL_PROGRAM) c2ps $(BIN)
maninstall: c2ps.1
- install -m 644 c2ps.1 $(MAN)
+ $(INSTALL_MAN) c2ps.1 $(MAN)
+ $(BSD_INSTALL_MAN) c2ps.1 $(MAN)
compile: c2ps.c
$(CC) $(PREP_OPTIONS) $(CCFLAGS) -o c2ps c2ps.c