Raphaël Halimi <raphael.hal...@gmail.com> writes:

> According to section 2.2.6 of GNU automake documentation:

> "The build tree usually has the same subdirectory layout as the source
> tree; its subdirectories are created automatically by the build system."

> Unfortunately, it doesn't seem to be true for the SCRIPTS primary (I
> assume it's true and works as expected for compiled binaries and
> libraries, I can't know, I'm new to autotools and I'm a sysadmin, I
> develop only scripts, nothing compiled).

I've run into this problem before, and just had Autoconf create the
directory by adding:

AC_CONFIG_COMMANDS([server], [test -d server || mkdir server])

(in my case, the name of the directory containing the scripts was server).
It's kind of a hack, but it works.

-- 
Russ Allbery (ea...@eyrie.org)              <http://www.eyrie.org/~eagle/>

Reply via email to