diff options
author | John Polstra <jdp@FreeBSD.org> | 1996-11-15 07:18:58 +0800 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 1996-11-15 07:18:58 +0800 |
commit | 092c0f453f5751050986401db6ff6863a486240b (patch) | |
tree | c2c161970dd444dcc58e85ccdf806f59f61e3b76 /lang/modula-3-lib | |
parent | cc25b6440edd94e7c8ffe5616cfc8665813b8d39 (diff) | |
download | freebsd-ports-gnome-092c0f453f5751050986401db6ff6863a486240b.tar.gz freebsd-ports-gnome-092c0f453f5751050986401db6ff6863a486240b.tar.zst freebsd-ports-gnome-092c0f453f5751050986401db6ff6863a486240b.zip |
The recent mass changes to the ports broke this one by erroneously
changing a "cpio" to "${CP}". This commit undoes that change.
Diffstat (limited to 'lang/modula-3-lib')
-rw-r--r-- | lang/modula-3-lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/modula-3-lib/Makefile b/lang/modula-3-lib/Makefile index faf31c31a1f0..605417068b04 100644 --- a/lang/modula-3-lib/Makefile +++ b/lang/modula-3-lib/Makefile @@ -3,7 +3,7 @@ # Date created: 28 Oct 1996 # Whom: John Polstra <jdp@polstra.com> # -# $Id: Makefile,v 1.1.1.1 1996/10/29 23:01:51 jdp Exp $ +# $Id: Makefile,v 1.2 1996/11/12 02:18:39 obrien Exp $ # DISTNAME= modula-3-lib-3.6 @@ -117,7 +117,7 @@ do-install: @cd ${temp_prefix}; \ umask 022; \ grep '^lib/m3/' ${PKGDIR}/PLIST | \ - ${CP} -dump -R ${BINOWN}.${BINGRP} ${PREFIX} + cpio -dump -R ${BINOWN}.${BINGRP} ${PREFIX} @cd ${PREFIX}; \ grep '^lib/m3/' ${PKGDIR}/PLIST | xargs chmod go=u-w; \ find -X lib/m3 -type d | xargs chown ${BINOWN}.${BINGRP}; \ |