From 7a14b2703e67bd2a41b8628d7a74122588065e18 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Fri, 4 Oct 2013 21:22:02 -0700 Subject: Use AC_CONFIG_LINKS to copy file into builddir Instead of a hacky blah: blah.in cp $< $@ rule. Also, a stamp file turns out to be necessary for building documentation if it is included in the distribution; if an up-to-date copy of the documentation is unpacked into the source tree during make distcheck, then it does not get remade in the build directory because it is up-to-date. That causes make distcheck to fail later on, because it can't copy the documentation from the build tree into the dist tree. [endlessm/eos-sdk#340] --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 291fbef..b6551aa 100644 --- a/configure.ac +++ b/configure.ac @@ -226,6 +226,9 @@ AC_CONFIG_FILES([ ]) AC_CONFIG_FILES([tools/eos-run-test], [chmod +x tools/eos-run-test]) AC_CONFIG_HEADERS([config.h]) dnl Header with system-dependent #defines +# Make docs/reference/webhelper/eos.css available in the build tree as well as +# the source tree +AC_CONFIG_LINKS([docs/reference/webhelper/eos.css:docs/reference/webhelper/eos.css]) # Do the output AC_OUTPUT -- cgit v1.2.3