diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2014-11-22 19:43:29 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-06-03 21:53:42 +0200 |
commit | 80db5ac1783458e29effd2eddff2e936302fe923 (patch) | |
tree | df943acba241fa7efe50632733722ff24eab40b6 /configure.ac | |
parent | build: remove --disable-ipv6 (diff) | |
download | frr-80db5ac1783458e29effd2eddff2e936302fe923.tar.xz frr-80db5ac1783458e29effd2eddff2e936302fe923.zip |
build: track config args
Record the ./configure arguments used and make them user-visible.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Acked-by: Paul Jakma <paul@jakma.org>
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c0bd17d94..265e8f915 100755 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,9 @@ ## AC_PREREQ(2.60) -AC_INIT(Quagga, 0.99.23.1+cl3u2, [https://bugzilla.quagga.net]) +AC_INIT(Quagga, 0.99.24+cl3u2, [https://bugzilla.quagga.net]) +CONFIG_ARGS="$*" +AC_SUBST(CONFIG_ARGS) AC_CONFIG_SRCDIR(lib/zebra.h) AC_CONFIG_MACRO_DIR([m4]) |