rjbriody <[email protected]> writes:

> I am specifying my Makefiles in configure.ac:

> AC_CONFIG_FILES([Makefile
>                                  private/Makefile])

> However, I remove the private directory during "make dist". This causes a
> ./configure in the distributed package to fail because private/Makefile.in
> does not exist. How do I add flexibility for directories to configure.ac? 

Does:

    AS_IF([test -d private], [AC_CONFIG_FILES([private/Makefile])])

work?  (You can have multiple AC_CONFIG_FILES invocations.)

-- 
Russ Allbery ([email protected])             <http://www.eyrie.org/~eagle/>


_______________________________________________
Autoconf mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to