diff options
author | asau <asau@pkgsrc.org> | 2014-04-19 01:14:41 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2014-04-19 01:14:41 +0000 |
commit | f355ba7545ea257d5c953b396665ef9d3bb943e3 (patch) | |
tree | 85252d490162d217158336a5cab29fa287ca46db /cross | |
parent | b2b32b237286e88449316917445a2ec5b28c3461 (diff) | |
download | pkgsrc-f355ba7545ea257d5c953b396665ef9d3bb943e3.tar.gz |
Don't use "-pe" for pax, it doesn't work on FreeBSD, use "-pp" instead.
Diffstat (limited to 'cross')
-rw-r--r-- | cross/mingw-runtime-bin/Makefile | 4 | ||||
-rw-r--r-- | cross/mingw-w32api-bin/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cross/mingw-runtime-bin/Makefile b/cross/mingw-runtime-bin/Makefile index 40a54e7c3d2..80e72da9d2e 100644 --- a/cross/mingw-runtime-bin/Makefile +++ b/cross/mingw-runtime-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2012/10/03 00:10:30 asau Exp $ +# $NetBSD: Makefile,v 1.3 2014/04/19 01:15:20 asau Exp $ DISTNAME= mingw-runtime-3.14 PKGNAME= mingw-runtime-bin-3.14 @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR} INSTALLATION_DIRS+= ${MINGW_TARGET} do-install: - cd ${WRKSRC} && pax -rw -pe bin include lib \ + cd ${WRKSRC} && pax -rw -pp bin include lib \ ${DESTDIR}${PREFIX}/${MINGW_TARGET} .include "../../cross/mingw/Makefile.common" diff --git a/cross/mingw-w32api-bin/Makefile b/cross/mingw-w32api-bin/Makefile index ec88ee231b6..55d7a51a8dd 100644 --- a/cross/mingw-w32api-bin/Makefile +++ b/cross/mingw-w32api-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2012/10/03 00:10:30 asau Exp $ +# $NetBSD: Makefile,v 1.3 2014/04/19 01:15:46 asau Exp $ DISTNAME= w32api-3.11 PKGNAME= mingw-w32api-bin-3.11 @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR} INSTALLATION_DIRS+= ${MINGW_TARGET} do-install: - cd ${WRKSRC} && pax -rw -pe include lib \ + cd ${WRKSRC} && pax -rw -pp include lib \ ${DESTDIR}${PREFIX}/${MINGW_TARGET} .include "../../cross/mingw/Makefile.common" |