]> gitweb.michael.orlitzky.com - apply-default-acl.git/commit
configure.ac: place build artifacts in the "build-aux" directory.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 16 Mar 2020 14:41:40 +0000 (10:41 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 16 Mar 2020 14:45:02 +0000 (10:45 -0400)
commit74c97a249290c9e33e6f06a27f5c99fb5bce36d4
tree7ba2dbf4bd83bce2175ad1b2e505e9acd35d137f
parent31ad4413a85e4f826d52fa98ff19b4481e30d679
configure.ac: place build artifacts in the "build-aux" directory.

During the build, autotools generates a bunch of files that need a
place to live. By default, most of them (the "compile" and "missing"
scripts, for example) wind up in the project root. This commit sets

  AC_CONFIG_AUX_DIR([build-aux])

in configure.ac so that the aforementioned files are placed in the
build-aux directory instead. This keeps the top-level directory
nice and clean.
configure.ac