diff options
author | bland <bland@FreeBSD.org> | 2006-08-07 10:23:46 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2006-08-07 10:23:46 +0800 |
commit | 57da7bff4c2a8bc06a54b10d18025a3c0bdbc1a1 (patch) | |
tree | a7389fd42be3d0c3fa3beed905d07f66f7c91adc | |
parent | 63368741a49545a849e93ab9d5218cfce946b63d (diff) | |
download | freebsd-ports-gnome-57da7bff4c2a8bc06a54b10d18025a3c0bdbc1a1.tar.gz freebsd-ports-gnome-57da7bff4c2a8bc06a54b10d18025a3c0bdbc1a1.tar.zst freebsd-ports-gnome-57da7bff4c2a8bc06a54b10d18025a3c0bdbc1a1.zip |
Fix build broken by recent ORBit2 update.
IDL compiller does not support any longer single letter option argument
if it not separated by space.
Reported by: erwin.
-rw-r--r-- | devel/libbonobomm/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/libbonobomm/Makefile b/devel/libbonobomm/Makefile index 9865c40634d9..6c5eeb32176a 100644 --- a/devel/libbonobomm/Makefile +++ b/devel/libbonobomm/Makefile @@ -28,4 +28,7 @@ USE_AUTOTOOLS= libtool:15 INSTALLS_SHLIB= yes CONFIGURE_ARGS= --enable-static +post-patch: + @${REINPLACE_CMD} -e 's|-lcpp|-l cpp|' ${WRKSRC}/bonobomm/generated/Makefile.in + .include <bsd.port.mk> |