diff options
author | Wolfram Schneider <wosch@FreeBSD.org> | 1997-12-31 12:09:33 +0000 |
---|---|---|
committer | Wolfram Schneider <wosch@FreeBSD.org> | 1997-12-31 12:09:33 +0000 |
commit | af220a4381aa65c335157da23d15f21e168dd320 (patch) | |
tree | 4ef0e996d6f395a23553f51cb9f5916502a29505 /german | |
parent | Standard upgrade ;_) to Website META Language, Version 1.4.11. (diff) |
Use INSTALL_DATA macro.
${GZIP_CMD} -d -> ${GZCAT}
Notes
Notes:
svn path=/head/; revision=9234
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 3a7e078eafc8..3c8e3ba7c588 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> |