diff options
author | wosch <wosch@FreeBSD.org> | 1997-12-31 12:09:33 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-12-31 12:09:33 +0000 |
commit | 957d3f55582ff7f1bc3537fd0a63cd4e8895c374 (patch) | |
tree | b5cd9d9109291ebc553b7cbf80d5b3b1c92121a1 /german | |
parent | daa2eb47aaa68ac466f129cf7c14902b83ff8e0c (diff) | |
download | FreeBSD-ports-957d3f55582ff7f1bc3537fd0a63cd4e8895c374.zip FreeBSD-ports-957d3f55582ff7f1bc3537fd0a63cd4e8895c374.tar.gz |
Use INSTALL_DATA macro.
${GZIP_CMD} -d -> ${GZCAT}
Diffstat (limited to 'german')
-rw-r--r-- | german/phone/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/german/phone/Makefile b/german/phone/Makefile index 3a7e078..3c8e3ba 100644 --- a/german/phone/Makefile +++ b/german/phone/Makefile @@ -2,7 +2,7 @@ # Date created: 1997-12-30 # Whom: wosch # -# $Id: Makefile,v 1.6 1997/10/03 12:25:15 wosch Exp $ +# $Id: Makefile,v 1.1.1.1 1997/12/30 23:26:01 wosch Exp $ DISTNAME= de-phone-1.0 CATEGORIES= german @@ -19,11 +19,10 @@ phone= avon-1996 phoneout= de.phone do-install: - ${INSTALL} ${COPY} -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} \ - ${WRKSRC}/${phone} ${PREFIX}/share/misc/${phoneout} + ${INSTALL_DATA} ${WRKSRC}/${phone} ${PREFIX}/share/misc/${phoneout} post-extract: ${phone} ${phone}: - ${GZIP_CMD} -d < ${DISTDIR}/${phone}.gz > ${WRKSRC}/${.TARGET} + ${GZCAT} < ${DISTDIR}/${phone}.gz > ${WRKSRC}/${.TARGET} .include <bsd.port.mk> |