diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-02-09 14:33:13 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-02-09 14:33:13 -0500 |
commit | 4bdb9ec7e9462e8fd242d434d09fdbb67590dd92 (patch) | |
tree | a80312fcc27e9714082c90c1be1d387518a83998 /configure.ac | |
parent | 19d4ed9811f915b72f4a74444554986ed63c3334 (diff) | |
download | cifs-utils-4bdb9ec7e9462e8fd242d434d09fdbb67590dd92.tar.gz cifs-utils-4bdb9ec7e9462e8fd242d434d09fdbb67590dd92.tar.bz2 cifs-utils-4bdb9ec7e9462e8fd242d434d09fdbb67590dd92.zip |
autoconf: fix "quoting" around macro args in configure.ac
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 723eeff..4ce490b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,12 +2,12 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT(cifs-utils, 0.1, jlayton@samba.org) +AC_INIT([cifs-utils], [4.0], [jlayton@samba.org]) AC_CONFIG_SRCDIR([replace.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile]) -AM_INIT_AUTOMAKE(cifs-utils, 0.1) +AM_INIT_AUTOMAKE([cifs-utils], [4.0]) # Checks for programs. AC_PROG_CC |