diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-03 20:24:26 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-03 20:24:26 +0800 |
commit | 4532ccba9560b1cd75495ea05019a3dbb42b8328 (patch) | |
tree | 8750231324508086cb75cdcadc02339d878c0c5d /devel | |
parent | c776742e15ddb00f889861d8fe57194744d8863e (diff) | |
download | freebsd-ports-gnome-4532ccba9560b1cd75495ea05019a3dbb42b8328.tar.gz freebsd-ports-gnome-4532ccba9560b1cd75495ea05019a3dbb42b8328.tar.zst freebsd-ports-gnome-4532ccba9560b1cd75495ea05019a3dbb42b8328.zip |
Fix build with bmake by using gmake if make is bmake
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ecore-file/Makefile | 3 | ||||
-rw-r--r-- | devel/ecore-ipc/Makefile | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/devel/ecore-file/Makefile b/devel/ecore-file/Makefile index d548915481b9..e717d56506cb 100644 --- a/devel/ecore-file/Makefile +++ b/devel/ecore-file/Makefile @@ -19,6 +19,9 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USE_EFL= ecore libtool_hack USES= pkgconfig +.if defined(.PARSEDIR) +USE_GMAKE= yes +.endif USE_LDCONFIG= yes BUILD_WRKSRC= ${WRKSRC}/src/lib/ecore_file INSTALL_WRKSRC= ${BUILD_WRKSRC} diff --git a/devel/ecore-ipc/Makefile b/devel/ecore-ipc/Makefile index 02c5046890d4..51ee5ce0ba45 100644 --- a/devel/ecore-ipc/Makefile +++ b/devel/ecore-ipc/Makefile @@ -20,6 +20,9 @@ GNU_CONFIGURE= yes USE_EFL= ecore libtool_hack USE_EFL_ECORE= con USES= pkgconfig +.if defined(.PARSEDIR) +USE_GMAKE= yes +.endif USE_LDCONFIG= yes BUILD_WRKSRC= ${WRKSRC}/src/lib/ecore_ipc INSTALL_WRKSRC= ${BUILD_WRKSRC} |