diff options
author | chuckr <chuckr@FreeBSD.org> | 1996-08-08 09:15:50 +0800 |
---|---|---|
committer | chuckr <chuckr@FreeBSD.org> | 1996-08-08 09:15:50 +0800 |
commit | 35f81efcc67a2188d99f193cbcc64b8dcbb0228e (patch) | |
tree | 6f30ca47c9cce5333fe58c8c0de618c5ea8e9d1d /astro/stars/Makefile | |
parent | 2b58e5b05eb44b15e50e52c30ccad31858684b58 (diff) | |
download | freebsd-ports-gnome-35f81efcc67a2188d99f193cbcc64b8dcbb0228e.tar.gz freebsd-ports-gnome-35f81efcc67a2188d99f193cbcc64b8dcbb0228e.tar.zst freebsd-ports-gnome-35f81efcc67a2188d99f193cbcc64b8dcbb0228e.zip |
Use $(INSTALL_PROGRAM) variable instead of explicit instsall.
Pointed out by: Satoshi.
Diffstat (limited to 'astro/stars/Makefile')
-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> |