diff options
author | trevor <trevor@FreeBSD.org> | 2002-06-19 09:30:06 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-06-19 09:30:06 +0800 |
commit | 5ca4252b6f6676b404793e0cca63de9a2e1a9d1f (patch) | |
tree | 74652273bdb95ef822be8d6eabcf9f45cef02e4d /x11-fonts/sgifonts | |
parent | bd15eb32ea7340455669bae86ffad09cc489dfa2 (diff) | |
download | freebsd-ports-gnome-5ca4252b6f6676b404793e0cca63de9a2e1a9d1f.tar.gz freebsd-ports-gnome-5ca4252b6f6676b404793e0cca63de9a2e1a9d1f.tar.zst freebsd-ports-gnome-5ca4252b6f6676b404793e0cca63de9a2e1a9d1f.zip |
Use a pipe instead of a temporary file.
Diffstat (limited to 'x11-fonts/sgifonts')
-rw-r--r-- | x11-fonts/sgifonts/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11-fonts/sgifonts/Makefile b/x11-fonts/sgifonts/Makefile index 1ebe8d6d2f3b..d7d7aab0fb42 100644 --- a/x11-fonts/sgifonts/Makefile +++ b/x11-fonts/sgifonts/Makefile @@ -23,8 +23,9 @@ WRKSRC= ${WRKDIR}/sgi-fonts do-extract: @${MKDIR} ${WRKDIR} - @rpm2cpio ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} \ - > ${WRKDIR}/sgifonts.cpio + @cd ${WRKDIR}; rpm2cpio ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} \ + | cpio --extract --no-preserve-owner \ + --preserve-modification-time --unconditional --quiet @cd ${WRKDIR}; \ cpio --extract --no-preserve-owner \ --preserve-modification-time --unconditional --quiet \ |