Re: improving speed of make check-world - Mailing list pgsql-hackers

From Fabien COELHO
Subject Re: improving speed of make check-world
Date
Msg-id alpine.DEB.2.10.1408311801050.14824@sto
Whole thread Raw
In response to Re: improving speed of make check-world  (Fabien COELHO <coelho@cri.ensmp.fr>)
List pgsql-hackers
>  # actual new tmp installation
>  .tmp_install:
>     $(RM) ./.tmp_install.*
>     $(RM) -r ./tmp_install
>     # create tmp installation...
>     touch $@
>
>  # tmp installation for the nonce
>  .tmp_install.$(MAKE_NONCE): .tmp_install
>      touch $@

Oops, I got it wrong, the install would not be reexecuted the second time.

Maybe someting more like:
  ifdef USE_ONE_INSTALL  TMP_INSTALL = .tmp_install.once  else  TMP_INSTALL = .tmp_install.$(MAKE_NONCE)  endif
  $(TMP_INSTALL):      $(RM) -r ./tmp_install .tmp_install.*      # do installation...      touch $@

So that the file target is different each time it is run. Hopefully.

-- 
Fabien.



pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: Final Patch for GROUPING SETS - unrecognized node type: 347
Next
From: Atri Sharma
Date:
Subject: Re: Final Patch for GROUPING SETS - unrecognized node type: 347