diff options
author | pav <pav@FreeBSD.org> | 2007-07-15 08:11:46 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-07-15 08:11:46 +0800 |
commit | f1b5fe3518080c2227bf4a2eacf0a097c05ea4ae (patch) | |
tree | 45b9590690684e7b588c90adac991bd8ad8a7cc3 /x11-toolkits | |
parent | a9e2e04c81854efb80c962864f7e68fa61f16bfb (diff) | |
download | freebsd-ports-gnome-f1b5fe3518080c2227bf4a2eacf0a097c05ea4ae.tar.gz freebsd-ports-gnome-f1b5fe3518080c2227bf4a2eacf0a097c05ea4ae.tar.zst freebsd-ports-gnome-f1b5fe3518080c2227bf4a2eacf0a097c05ea4ae.zip |
- Fix after objformat removal
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} |