diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-11-24 15:39:00 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-11-24 15:39:00 +0100 |
commit | 9a20fcbcd1b010ad88bfbb8b7f0417bec7327fb4 (patch) | |
tree | 9d1e7e6f3ebe36cbb1479cf149d58c64c2379d57 /.gitignore | |
parent | d4f5a1f47dbd04f26f2ddf951c97c4cb0ebbbe62 (diff) |
build-sys: support local ./configure arguments
I often want to use the awesome "./autogen.sh [cmd]" arguments, but have
to append some custom ./configure options. For now, I always had to edit
autogen.sh manually, or copy the full commands out of it and run it
myself.
As I think this is super annoying, this commit adds support for
".config.args" files in $topdir. If it exists, any content is just
appended to $args, thus to any ./configure invokation of autogen.sh.
Maybe autotools provide something similar out-of-the-box. In that case,
feel free to revert this and lemme know!
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 2293dedd8e..e5953d3086 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ *.swp *.trs *~ +.config.args .deps/ .dirstamp .libs/ |