diff options
author | asami <asami@FreeBSD.org> | 1997-06-04 09:14:25 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-06-04 09:14:25 +0800 |
commit | 3f9bd048357597c391fd22ab9fda133f16dda6c6 (patch) | |
tree | fafd732178f685b0d5bfa37fe4a0ec0fd245b6b6 /graphics/urt | |
parent | 674459b017ca5d9f2c3195ac9c450970654206a8 (diff) | |
download | freebsd-ports-graphics-3f9bd048357597c391fd22ab9fda133f16dda6c6.tar.gz freebsd-ports-graphics-3f9bd048357597c391fd22ab9fda133f16dda6c6.tar.zst freebsd-ports-graphics-3f9bd048357597c391fd22ab9fda133f16dda6c6.zip |
Modify hack to remove "doc" subdir name from share/doc/urt/doc.
Diffstat (limited to 'graphics/urt')
-rw-r--r-- | graphics/urt/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/graphics/urt/Makefile b/graphics/urt/Makefile index 910b836d63a..d428effded3 100644 --- a/graphics/urt/Makefile +++ b/graphics/urt/Makefile @@ -3,7 +3,7 @@ # Date created: Jan 5 1997 # Whom: cfs@ing.puc.cl (original) # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1997/06/03 23:41:07 asami Exp $ # DISTNAME= urt @@ -24,8 +24,10 @@ post-install: ${MKDIR} ${PREFIX}/share/doc/urt cd ${PREFIX}/share/doc/urt; \ tar xf $(DISTDIR)/urt-doc.tar; \ - mv doc/* .; \ - rmdir doc; \ + cd doc; \ + find -d . | cpio -dump ..; \ + cd ..; \ + rm -rf doc; \ tar xf $(DISTDIR)/urt-img.tar; \ chown -R root:wheel . ; \ find . -type d -exec chmod 775 '{}' \; ; \ |