Skip to content
Snippets Groups Projects
Commit 34b36d3a authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Fix libdir and includedir reference.

parent 34f93c44
No related branches found
No related tags found
No related merge requests found
...@@ -12,10 +12,10 @@ dnl $5: header name ...@@ -12,10 +12,10 @@ dnl $5: header name
dnl $6: include path (-I$6) dnl $6: include path (-I$6)
dnl $7 \in \{optional, required\}, bail out if required, warning otherwise dnl $7 \in \{optional, required\}, bail out if required, warning otherwise
dnl dnl
AC_DEFUN(ALBERT_CHECK_PKG, AC_DEFUN(ALBERT_CHECK_PACKAGE,
[AC_REQUIRE([AC_SET_PREFIX]) [AC_REQUIRE([AC_SET_PREFIX])
if test -z "$3"; then if test -z "$3"; then
DEFAULT_LIBDIR=${libdir} DEFAULT_LIBDIR=`eval eval echo ${libdir}`
else else
DEFAULT_LIBDIR=$3 DEFAULT_LIBDIR=$3
fi fi
...@@ -35,7 +35,7 @@ dnl ...@@ -35,7 +35,7 @@ dnl
dnl now for the header file dnl now for the header file
dnl dnl
if test -z "$6"; then if test -z "$6"; then
DEFAULT_INCDIR=${libdir} DEFAULT_INCDIR=`eval eval echo ${includedir}`
else else
DEFAULT_INCDIR=$6 DEFAULT_INCDIR=$6
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment