diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-01-28 16:07:07 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-01-28 16:07:07 -0500 |
commit | 7b4bd8222579b60bec6ab9dbf834d61b1fc7cc74 (patch) | |
tree | aa625b6983d5106f86387c94330cb300c6859bd8 | |
parent | 5fdae72cc62f4341ae5fa0b7696809d4ccd1bd32 (diff) |
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
This silences an Automake warning.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4966dae..75d5b0a 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ XORG_DEFAULT_OPTIONS AC_PROG_LIBTOOL pciids_path=/usr/share/hwdata -AC_ARG_WITH(pciids-path, AC_HELP_STRING([--with-pciids-path=PCIIDS_PATH], +AC_ARG_WITH(pciids-path, AS_HELP_STRING([--with-pciids-path=PCIIDS_PATH], [Path to pci.ids file]), [pciids_path="$withval"]) AX_DEFINE_DIR(PCIIDS_PATH, pciids_path, [Path to pci.ids]) @@ -56,7 +56,7 @@ if test "x$LINUX_ROM" = xyes; then fi use_zlib=no -AC_ARG_WITH(zlib, AC_HELP_STRING([--with-zlib], +AC_ARG_WITH(zlib, AS_HELP_STRING([--with-zlib], [Enable zlib support to read gzip compressed pci.ids]), [use_zlib="$withval"]) if test "x$use_zlib" = xyes; then |