diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-15 00:11:46 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-15 00:11:46 +0000 |
commit | 8439bce3812f1e24ef53a60ff774c58890645faa (patch) | |
tree | 237f3f5cac67e98b1bd2eb7563dea614c5b7c23a /x11-toolkits | |
parent | 6a2b07d1c1cdd03e38c7d1e2a260e828e2ada031 (diff) | |
download | ports-8439bce3812f1e24ef53a60ff774c58890645faa.tar.gz ports-8439bce3812f1e24ef53a60ff774c58890645faa.zip |
- Fix after objformat removal
Notes
Notes:
svn path=/head/; revision=195636
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/guile-gnome/Makefile | 3 | ||||
-rw-r--r-- | x11-toolkits/py-gnome/Makefile | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/x11-toolkits/guile-gnome/Makefile b/x11-toolkits/guile-gnome/Makefile index d410b5277f1e..70d158effba9 100644 --- a/x11-toolkits/guile-gnome/Makefile +++ b/x11-toolkits/guile-gnome/Makefile @@ -27,6 +27,9 @@ CONFIGURE_ARGS= --with-bonobo --with-gtkhtml --without-gal \ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +post-patch: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/ltconfig + pre-build: @${TOUCH} -f ${WRKSRC}/guile-gnome/gtkhtml/*.c diff --git a/x11-toolkits/py-gnome/Makefile b/x11-toolkits/py-gnome/Makefile index f5248ed9de44..bb02e403ef47 100644 --- a/x11-toolkits/py-gnome/Makefile +++ b/x11-toolkits/py-gnome/Makefile @@ -34,6 +34,9 @@ EG_DST_DIR= ${PREFIX}/share/examples/py-gnome CONFLICTS= py*-gnome-2* +post-patch: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure ${WRKSRC}/pygtk/configure + .if !defined(NOPORTDOCS) post-install: ${MKDIR} ${EG_DST_DIR} |