summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b0fa1ce..b0b89cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-26 Thomas Schwinge <tschwinge@gnu.org>
+
+ * configure.ac (ABS_SRCDIR): Use ``readlink -f'' instead of
+ ``realpath''.
+
2008-01-24 Neal H. Walfield <neal@gnu.org>
* README: Update build instructions.
diff --git a/configure.ac b/configure.ac
index f17a2b7..19d686f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -187,7 +187,7 @@ AM_CONDITIONAL(WITH_NEWLIB, test x"${with_newlib-no}" != xno)
ABS_BUILDDIR=$ac_pwd
AC_SUBST([ABS_BUILDDIR])
-ABS_SRCDIR=`realpath $srcdir`
+ABS_SRCDIR=`readlink -f $srcdir`
AC_SUBST([ABS_SRCDIR])
# Location of the installed headers and .a's. We expect that
# LIBC/libc.a and LIBC/include exists.