capiinfo/configure.ac: fix double-evaluation & autoreconf

No need to double-evaluate CONFIG_I4LCONFDIR.
This commit is contained in:
Peter Marschall 2012-04-22 11:41:56 +02:00
parent f84b559933
commit 968bc5ae56
2 changed files with 2 additions and 2 deletions

2
capiinfo/configure vendored
View File

@ -2506,7 +2506,7 @@ am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
I4LCONFDIR=`eval echo ${CONFIG_I4LCONFDIR:-"/etc/isdn"}`
I4LCONFDIR=${CONFIG_I4LCONFDIR:-"/etc/isdn"}
I4LVERSION=${I4LVERSION:-"?.?"}
CONFIG_SBINDIR=${sbindir:-"/sbin"}
CONFIG_MANDIR=${mandir:-"/usr/man"}

View File

@ -6,7 +6,7 @@ AC_INIT([capiinfo], [1.0])
AM_INIT_AUTOMAKE
AC_PREFIX_DEFAULT([/usr])
I4LCONFDIR=`eval echo ${CONFIG_I4LCONFDIR:-"/etc/isdn"}`
I4LCONFDIR=${CONFIG_I4LCONFDIR:-"/etc/isdn"}
I4LVERSION=${I4LVERSION:-"?.?"}
CONFIG_SBINDIR=${sbindir:-"/sbin"}
CONFIG_MANDIR=${mandir:-"/usr/man"}