diff options
author | ak <ak@FreeBSD.org> | 2012-07-04 14:59:30 +0800 |
---|---|---|
committer | ak <ak@FreeBSD.org> | 2012-07-04 14:59:30 +0800 |
commit | 87f517372be01f5d50b954be8b1d1187251d0542 (patch) | |
tree | 472413e665d3f3c4fa034c1340c1d5e4cc892cb7 | |
parent | 57e3710724eff5ca557374a6daa7ff6ac23a7153 (diff) | |
download | freebsd-ports-gnome-87f517372be01f5d50b954be8b1d1187251d0542.tar.gz freebsd-ports-gnome-87f517372be01f5d50b954be8b1d1187251d0542.tar.zst freebsd-ports-gnome-87f517372be01f5d50b954be8b1d1187251d0542.zip |
- Fix explicit use of unzip
PR: ports/153429
Approved by: office@ (crees)
-rw-r--r-- | editors/openoffice-3-devel/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice-3/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice.org-vcltesttool/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice-3-devel/Makefile b/editors/openoffice-3-devel/Makefile index 35d07163e144..f0acf7a6b3c4 100644 --- a/editors/openoffice-3-devel/Makefile +++ b/editors/openoffice-3-devel/Makefile @@ -235,7 +235,7 @@ post-patch: .endif pre-configure: - @${LN} -sf ${LOCALBASE}/bin/unzip ${WRKSRC}/solenv/bin/unzip + @${LN} -sf ${UNZIP_CMD} ${WRKSRC}/solenv/bin/unzip do-build: @cd ${WRKDIR}/ooo ; ${PRINTF} "[repositories]\n" > source_config diff --git a/editors/openoffice-3/Makefile b/editors/openoffice-3/Makefile index efb2e9208004..6e7df75bdf72 100644 --- a/editors/openoffice-3/Makefile +++ b/editors/openoffice-3/Makefile @@ -239,7 +239,7 @@ post-patch: .endif pre-configure: - @${LN} -sf ${LOCALBASE}/bin/unzip ${WRKSRC}/solenv/bin/unzip + @${LN} -sf ${UNZIP_CMD} ${WRKSRC}/solenv/bin/unzip do-build: @cd ${WRKDIR}/aoo-${PORTVERSION} ; ${PRINTF} "[repositories]\n" > source_config diff --git a/editors/openoffice.org-vcltesttool/Makefile b/editors/openoffice.org-vcltesttool/Makefile index 7fd7300ce5b4..10c1a8300d3b 100644 --- a/editors/openoffice.org-vcltesttool/Makefile +++ b/editors/openoffice.org-vcltesttool/Makefile @@ -120,7 +120,7 @@ post-extract: pre-configure: #Workaround for gperf. #i85469# @${LN} -sf ${LOCALBASE}/bin/gperf ${WRKSRC}/solenv/bin/gperf - @${LN} -sf ${LOCALBASE}/bin/unzip ${WRKSRC}/solenv/bin/unzip + @${LN} -sf ${UNZIP_CMD} ${WRKSRC}/solenv/bin/unzip do-build: @cd ${WRKSRC} ; ./bootstrap |