diff options
author | Stig Thormodsrud <stig@vyatta.com> | 2010-10-26 16:58:08 -0700 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2010-10-26 16:58:08 -0700 |
commit | de8b643eb1ff7c056f4e5e9c920387ed2d2d2a11 (patch) | |
tree | 333c2e0b2f020ed6469c3076d43050de08cfcb4a /configure.ac | |
download | vyatta-config-mgmt-de8b643eb1ff7c056f4e5e9c920387ed2d2d2a11.tar.gz vyatta-config-mgmt-de8b643eb1ff7c056f4e5e9c920387ed2d2d2a11.zip |
Create vyatta-config-mgmt repo.debian/0.1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..ecc4e94 --- /dev/null +++ b/configure.ac @@ -0,0 +1,23 @@ +# Process this file with autoconf to produce a configure script. +AC_PREREQ(2.59) + +m4_define([VERSION_ID], [m4_esyscmd([ + if test -f .version ; then + head -n 1 .version | tr -d \\n + else + echo -n 2.4 + fi])]) +AC_INIT([vyatta-config-mgmt], VERSION_ID, [vyatta-support@vyatta.com]) + +test -n "$VYATTA_VERSION" || VYATTA_VERSION=$PACKAGE_VERSION + +AC_CONFIG_AUX_DIR([config]) +AM_INIT_AUTOMAKE([gnu no-dist-gzip dist-bzip2 subdir-objects]) +AC_PREFIX_DEFAULT([/opt/vyatta]) + +AC_CONFIG_FILES( + [Makefile] + [debian/vyatta-config-mgmt.postinst]) + +AC_OUTPUT + |