diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-02 01:57:16 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-02 01:57:16 +0800 |
commit | ceca667c5166f2255d18a9e3729044b29d40da78 (patch) | |
tree | f650618efc25569d8af8cd615ed16ce6c0b9de0c /www/mozilla/Makefile | |
parent | ada1aca5896895d1c3cd16e503dae2d13375b251 (diff) | |
download | marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar.gz marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar.bz2 marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar.lz marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar.xz marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.tar.zst marcuscom-ports-ceca667c5166f2255d18a9e3729044b29d40da78.zip |
Do the REINPLACE_CMD for FAKEDIR -> PREFIX in do-install so that it actually
works.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2918 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/mozilla/Makefile')
-rw-r--r-- | www/mozilla/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/mozilla/Makefile b/www/mozilla/Makefile index 6c74406a1..d3e51ec63 100644 --- a/www/mozilla/Makefile +++ b/www/mozilla/Makefile @@ -252,7 +252,6 @@ post-patch: ${WRKSRC}/modules/libpref/src/init/all.js @for pcfile in ${PKGCONFIG_FILES}; do \ ${REINPLACE_CMD} -e 's|mozilla-xpcom|mozilla-xpcom${MOZ_SUFX}${PKGNAMESUFFIX}|g ; \ - s|${FAKEDIR}|${PREFIX}|g ; \ s|mozilla-nspr|mozilla-nspr${MOZ_SUFX}${PKGNAMESUFFIX}|g' \ ${WRKSRC}/build/unix/$${pcfile}.pc.in; \ done @@ -334,6 +333,8 @@ do-install: done; \ fi for pcfile in ${PKGCONFIG_FILES}; do \ + ${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \ + ${WRKSRC}/build/unix/$${pcfile}.pc ${INSTALL_DATA} ${WRKSRC}/build/unix/$${pcfile}.pc \ ${PREFIX}/libdata/pkgconfig/$${pcfile}${MOZ_SUFX}${PKGNAMESUFFIX}.pc ; \ done |