>>>>> On Sun, 11 Jan 2009 12:32:35 +0100, Kern Sibbald said:
> 
> Hello Dan,
> 
> Could you please update to the latest version of the SVN (both trunk/bacula 
> and trunk/regress)  and tell me if the problem is fixed?  It is hard to test 
> here since all my machines have a gmake.  If you have gmake on your system, 
> Bacula should now use it when appropriate or skip the calls.  However, I am 
> almost sure there are other problems that I did not see lurking in the code, 
> so it make take a few tries.

There are still two direct uses of make clean in bacula's main configure
script.  I think they should be ${MAKE:-make} clean like this:

--- configure   (revision 8361)
+++ configure   (working copy)
@@ -44730,7 +44730,7 @@
    chmod 755 install_conf_file build-depkgs-qt-console
    echo "Creating bat Makefile"
    $QMAKEBIN
-   make clean
+   ${MAKE:-make} clean
    cd ${BUILD_DIR}
 fi
 
@@ -44794,7 +44794,7 @@
 echo " "
 echo "Cleaning up"
 echo " "
-make clean
+${MAKE:-make} clean
 
 if test "x${db_type}" = "xInternal" ; then
    echo " "

--- autoconf/configure.in       (revision 8361)
+++ autoconf/configure.in       (working copy)
@@ -2847,7 +2847,7 @@
    chmod 755 install_conf_file build-depkgs-qt-console
    echo "Creating bat Makefile"
    $QMAKEBIN
-   make clean
+   ${MAKE:-make} clean
    cd ${BUILD_DIR}
 fi
 
@@ -2920,7 +2920,7 @@
 echo " "
 echo "Cleaning up"
 echo " "
-make clean
+${MAKE:-make} clean
 
 if test "x${db_type}" = "xInternal" ; then
    echo " "

__Martin

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Bacula-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to