diff options
author | pav <pav@FreeBSD.org> | 2007-03-29 04:06:51 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-03-29 04:06:51 +0800 |
commit | 918214ddc26ec69e36c94fdb9bd454b444d7e8ab (patch) | |
tree | 9c5a8e1b62830b372b59042dee875d99b30fd74a /net-im | |
parent | 097dcd8cefeb4180cf910afd76057b2062cc3bcf (diff) | |
download | freebsd-ports-gnome-918214ddc26ec69e36c94fdb9bd454b444d7e8ab.tar.gz freebsd-ports-gnome-918214ddc26ec69e36c94fdb9bd454b444d7e8ab.tar.zst freebsd-ports-gnome-918214ddc26ec69e36c94fdb9bd454b444d7e8ab.zip |
- Fix after objformat removal
Reported by: pointyhat
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim-bangexec/Makefile | 2 | ||||
-rw-r--r-- | net-im/gaim-extprefs/Makefile | 2 | ||||
-rw-r--r-- | net-im/gaim-ignorance/Makefile | 2 | ||||
-rw-r--r-- | net-im/gaim-slashexec/Makefile | 3 |
4 files changed, 6 insertions, 3 deletions
diff --git a/net-im/gaim-bangexec/Makefile b/net-im/gaim-bangexec/Makefile index 1740b734838a..721d230d0404 100644 --- a/net-im/gaim-bangexec/Makefile +++ b/net-im/gaim-bangexec/Makefile @@ -26,6 +26,6 @@ GNU_CONFIGURE= yes PLIST_FILES= lib/gaim/bangexec.la lib/gaim/bangexec.so post-patch: - @${REINPLACE_CMD} -e 's|-g3||' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-g3|| ; s|echo aout|echo elf|' ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/net-im/gaim-extprefs/Makefile b/net-im/gaim-extprefs/Makefile index 1db0b358f2f1..f27b713bcf7e 100644 --- a/net-im/gaim-extprefs/Makefile +++ b/net-im/gaim-extprefs/Makefile @@ -27,6 +27,6 @@ CFLAGS+= "-fPIC" PLIST_FILES= lib/gaim/libextprefs.la lib/gaim/libextprefs.so post-patch: - @${REINPLACE_CMD} -e 's/-g3//' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's/-g3// ; s|echo aout|echo elf|' ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/net-im/gaim-ignorance/Makefile b/net-im/gaim-ignorance/Makefile index bba7aa20af45..72e7035079e2 100644 --- a/net-im/gaim-ignorance/Makefile +++ b/net-im/gaim-ignorance/Makefile @@ -27,7 +27,7 @@ SUB_FILES= pkg-message PORTDOCS= README post-patch: - @${REINPLACE_CMD} -e 's|-g3||' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-g3|| ; s|echo aout|echo elf|' ${WRKSRC}/configure @${REINPLACE_CMD} -e "s/ignorance.conf/ignorance.conf.sample/g" ${WRKSRC}/Makefile.in @${MV} ${WRKSRC}/ignorance.conf ${WRKSRC}/ignorance.conf.sample diff --git a/net-im/gaim-slashexec/Makefile b/net-im/gaim-slashexec/Makefile index 4e69fc4d7007..f61f7971b499 100644 --- a/net-im/gaim-slashexec/Makefile +++ b/net-im/gaim-slashexec/Makefile @@ -23,4 +23,7 @@ GNU_CONFIGURE= yes PLIST_FILES= lib/gaim/se.la lib/gaim/se.so +post-patch: + @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure + .include <bsd.port.mk> |