Hello,

I would prefer to track down and fix the problem (not shown here).  The 
regression scripts should not be gmake dependent.  If the problem is only due 
to the src/win32 problems, see below.

Unfortunately, for the problem of  <bacula-source>/src/win32 scripts and 
Makefiles, they are gmake dependent, so that problem we will need to fix by 
disabling them when make != gmake.  I am working on that now.

Kern



On Sunday 11 January 2009 04:27:29 Dan Langille wrote:
> Hi,
>
> I noticed these problems tonight when trying to get the regression
> scripts running on FreeBSD 7.x
>
> In short, we're hardcoding the call to make.  On FreeBSD, we need to
> invoke gmake, not make.
>
>
> --- scripts/setup       (revision 8352)
> +++ scripts/setup       (working copy)
> @@ -36,11 +36,11 @@
>   check_exit_code
>   # Cleanup any win32 build in source
>   cd src/win32
> -make clean
> +${MAKE} clean
>   cd ../..
> -make -j3
> +${MAKE} -j3
>   check_exit_code
> -make install
> +${MAKE}  install
>   check_exit_code
>   cp src/tools/testls ../bin
>   check_exit_code
>
> Now, we don't have MAKE set up, but I have it set in my scripts.
> Clearly we need to do something so we pick up the correct make.
>
> ---------------------------------------------------------------------------
>--- 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



------------------------------------------------------------------------------
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