diff options
author | jperkin <jperkin@pkgsrc.org> | 2016-02-26 14:01:09 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2016-02-26 14:01:09 +0000 |
commit | 37f8d1e080375f260525416b8c9cf85ea906efe8 (patch) | |
tree | 42b074ca5cf8e802b7433139b828ff8d94ca7fd2 /graphics | |
parent | 5afcfc9cdc0cb90363cee8d5b86b15b6b0d1125e (diff) | |
download | pkgsrc-37f8d1e080375f260525416b8c9cf85ea906efe8.tar.gz |
Fix pax arguments.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/elementary-xfce-icon-theme/Makefile | 5 | ||||
-rw-r--r-- | graphics/vtk-data/Makefile | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/graphics/elementary-xfce-icon-theme/Makefile b/graphics/elementary-xfce-icon-theme/Makefile index b961cdcdf9d..7c09a32126f 100644 --- a/graphics/elementary-xfce-icon-theme/Makefile +++ b/graphics/elementary-xfce-icon-theme/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2015/11/25 12:50:43 jperkin Exp $ +# $NetBSD: Makefile,v 1.5 2016/02/26 14:01:09 jperkin Exp $ GHCOMMIT= a0b2b19231c3383f77f106d9cdacb2d148519cfd DISTNAME= ${GHCOMMIT} @@ -28,8 +28,7 @@ PRINT_PLIST_AWK+= /^share\/icons\/elemantary-xfce-darker\/icon-theme.cache$$/ { INSTALLATION_DIRS+= share/icons do-install: - cd ${WRKSRC} && pax -rw -pe e* ${DESTDIR}${PREFIX}/share/icons/ - + cd ${WRKSRC} && ${PAX} -rw -pm e* ${DESTDIR}${PREFIX}/share/icons/ .include "../../graphics/gnome-icon-theme/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/vtk-data/Makefile b/graphics/vtk-data/Makefile index 86a98249797..339fa184647 100644 --- a/graphics/vtk-data/Makefile +++ b/graphics/vtk-data/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2012/10/06 14:11:24 asau Exp $ +# $NetBSD: Makefile,v 1.7 2016/02/26 14:05:48 jperkin Exp $ # DISTNAME= VTKData-4.2 @@ -15,7 +15,7 @@ EXAMPLES_DIR= share/vtk do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${EXAMPLES_DIR} - cd ${WRKSRC} && pax -rw -pe -s '|.*/CVS/.*||' . \ + cd ${WRKSRC} && ${PAX} -rw -pm -s '|.*/CVS/.*||' . \ ${DESTDIR}${PREFIX}/${EXAMPLES_DIR} .include "../../graphics/vtk/Makefile.common" |