mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
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:
parent
5a136a637d
commit
5f2482b873
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9926
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user