diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-09-30 01:48:45 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-09-30 01:48:45 +0800 |
commit | 88ddf382876e29e85f9f6c8e1a778c05c1255cc4 (patch) | |
tree | c00784d2e0a7569128716b4fca42544d3b4033a1 /www/epiphany | |
parent | 324ec21c5b7c546a4bbb3060d3d1fd01a7e67145 (diff) | |
download | marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar.gz marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar.bz2 marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar.lz marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar.xz marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.tar.zst marcuscom-ports-88ddf382876e29e85f9f6c8e1a778c05c1255cc4.zip |
Fix configure with mozilla-devel. This kluge could stand to be cleaned
up a bit, I'd think...
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2902 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/epiphany')
-rw-r--r-- | www/epiphany/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile index 144aac347..d6b204ccf 100644 --- a/www/epiphany/Makefile +++ b/www/epiphany/Makefile @@ -71,8 +71,10 @@ pre-everything:: @${ECHO_MSG} "" post-patch: - @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}|g' \ - -e 's|mozilla-xpcom|mozilla-xpcom${HEADERS_SUFX}|g' \ + @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}|g ; \ + s|mozilla-xpcom|mozilla-xpcom${HEADERS_SUFX}|g ; \ + s|$$MOZILLA-gtkmozembed|$$MOZILLA-gtkmozembed${HEADERS_SUFX}|g ; \ + s|$$MOZILLA-xpcom|$$MOZILLA-xpcom${HEADERS_SUFX}|g' \ ${WRKSRC}/configure @${FIND} ${WRKSRC} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \ 's|-lpthread|${PTHREAD_LIBS}|g' |