diff options
author | Chuck Robey <chuckr@FreeBSD.org> | 1996-08-08 01:15:50 +0000 |
---|---|---|
committer | Chuck Robey <chuckr@FreeBSD.org> | 1996-08-08 01:15:50 +0000 |
commit | 47f7871c2355fac669ca0399f7597d55b5b399d6 (patch) | |
tree | f20fd2ab54fa35ccfa357d0e35260a347206747e /astro | |
parent | 106acbbc466eda2b3a207ac4d2972f8e30225537 (diff) | |
download | ports-47f7871c2355fac669ca0399f7597d55b5b399d6.tar.gz ports-47f7871c2355fac669ca0399f7597d55b5b399d6.zip |
Use $(INSTALL_PROGRAM) variable instead of explicit instsall.
Pointed out by: Satoshi.
Notes
Notes:
svn path=/head/; revision=3541
Diffstat (limited to 'astro')
-rw-r--r-- | astro/stars/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astro/stars/Makefile b/astro/stars/Makefile index f56f9fe18636..df88793e5aea 100644 --- a/astro/stars/Makefile +++ b/astro/stars/Makefile @@ -3,7 +3,7 @@ # Date created: 10 Jul 1996 # Whom: searle # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1996/08/03 22:42:46 chuckr Exp $ # DISTNAME= stars-1.0-ss-9.03 @@ -23,6 +23,6 @@ do-build: cc $(WRKSRC)/main.o $(WRKSRC)/xwin.o -L$(PREFIX)/lib -lX11 -lm -o $(WRKSRC)/stars do-install: - install -c $(WRKSRC)/stars $(PREFIX)/bin/stars + $(INSTALL_PROGRAM) $(WRKSRC)/stars $(PREFIX)/bin/stars .include <bsd.port.mk> |