diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-02-25 12:03:37 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-02-25 12:03:37 +0000 |
commit | 5f2482b87359007089432d1434598648f0e9ebfc (patch) | |
tree | 553918f34a4fb9ec57fdd386cf2546ddb5a46a9b | |
parent | Back out previous commit. MOTIF_STATIC is a user variable (defined by (diff) |
Make this port actually install by using BSD_INSTALL_* macros, not
INSTALL_* macros (which are not what's passed in the environment).
-rw-r--r-- | print/c2ps-letter/files/patch-aa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/c2ps-letter/files/patch-aa b/print/c2ps-letter/files/patch-aa index d00f0ee039b5..e8f9470cd98a 100644 --- a/print/c2ps-letter/files/patch-aa +++ b/print/c2ps-letter/files/patch-aa @@ -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 |