Dependency injection and unit testing of M4 macros

2008-09-10 Thread tsuna
un does a m4_define, so what am I doing wrong? -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Re: Dependency injection and unit testing of M4 macros

2008-09-10 Thread tsuna
On Wed, Sep 10, 2008 at 2:33 PM, Eric Blake <[EMAIL PROTECTED]> wrote: > According to tsuna on 9/10/2008 2:39 AM: >> >> I tried to use m4_rename like so: >> m4_rename([SOME_DEP], [SAVED_SOME_DEP])dnl <-- this is line 300 >> AC_DEFUN([SOME_DEP], [echo hooked ch

Why does mkdir_p use a relative path to install-sh?

2011-08-31 Thread tsuna
ild-aux/install-sh' It also means I can't install that script during make install, because it will reference the install-sh from the source tree. So I was just curious as to why mkdir_p was made to use a relative path to install-sh. -- Benoit "tsun

Re: Why does mkdir_p use a relative path to install-sh?

2011-09-01 Thread tsuna
d' ? -- Benoit "tsuna" Sigoure Software Engineer @ www.StumbleUpon.com ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Wholesale sharing of config.cache across many packages

2012-10-09 Thread tsuna
would be a very ugly kludge. Any suggestions? Thanks in advance. -- Benoit "tsuna" Sigoure ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: Wholesale sharing of config.cache across many packages

2012-10-10 Thread tsuna
On Tue, Oct 9, 2012 at 2:27 AM, tsuna wrote: > Any suggestions? Thanks in advance. How about this hack? Prior to running configure, I do: sed -i '/^ac_cv_env_[A-Z]*_/d' $TMP_CACHE -- Benoit "tsuna" Sigoure ___ Autocon

Re: copying object files and binary files in different directories

2007-05-25 Thread Tsuna
m another directory, for instance go at the root of your projet and do: mkdir build && cd build && ../configure [options]) If VPATH does not suit you then try to explain what you're really trying to achieve and why. Cheers, -- Benoit Sigoure aka Ts