From 8de7d1cb130edefb28b0dd9fd92d11c5cb803868 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Thu, 17 Sep 2009 21:19:59 +0200 Subject: [PATCH] Fix conf to use make as requested by Martin Simmons a long time ago --- bacula/autoconf/configure.in | 4 ++-- bacula/configure | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 44de783393..0c449aa716 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -2968,7 +2968,7 @@ if test "${support_bat}" = "yes" ; then touch bat chmod 755 bat $QMAKEBIN - make clean + ${MAKE:-make} clean cd ${BUILD_DIR} fi @@ -3045,7 +3045,7 @@ fi echo " " echo "Cleaning up" echo " " -make clean +${MAKE:-make} clean if test "x${db_type}" = "xInternal" ; then echo " " diff --git a/bacula/configure b/bacula/configure index b3b697b29a..e4dbb108ff 100755 --- a/bacula/configure +++ b/bacula/configure @@ -45657,7 +45657,7 @@ echo "$as_me: error: Could not find qmake or qmake-qt4 in $PATH. Check your Qt i touch bat chmod 755 bat $QMAKEBIN - make clean + ${MAKE:-make} clean cd ${BUILD_DIR} fi @@ -45725,7 +45725,7 @@ fi echo " " echo "Cleaning up" echo " " -make clean +${MAKE:-make} clean if test "x${db_type}" = "xInternal" ; then echo " " -- 2.39.5