Use sysconfdir variable if was given via '--sysconfdir' flag to configure script.

This commit is contained in:
Sanel Zukan
2010-01-19 14:41:51 +00:00
parent bb1f7cf95e
commit 7b97a3ccd4
3 changed files with 18 additions and 2 deletions

12
m4/expand.m4 Normal file
View File

@@ -0,0 +1,12 @@
dnl
dnl found in https://jim.sh/svn/jim/vendor/sdcc/2.5.0/configure.in
dnl Examples: AC_EXPAND(prefix, "/usr/local", expanded_prefix)
AC_DEFUN([EDE_EXPAND], [
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
ac_expand=[$]$1
test "x$ac_expand" = xNONE && ac_expand="[$]$2"
ac_expand=`eval echo [$]ac_expand`
$3=`eval echo [$]ac_expand`
])