Commit 3ec5d64d by John David Anglin Committed by John David Anglin

configure.in (PREFIX_INCLUDE_DIR): Don't define if prefix and local_prefix are the same.

	* configure.in (PREFIX_INCLUDE_DIR): Don't define if prefix and
	local_prefix are the same.
	* configure: Rebuilt.

From-SVN: r56108
parent ad9335eb
2002-08-07 John David Anglin <dave@hiauly1.hia.nrc.ca>
* configure.in (PREFIX_INCLUDE_DIR): Don't define if prefix and
local_prefix are the same.
* configure: Rebuilt.
2002-08-07 Jakub Jelinek <jakub@redhat.com>
Richard Henderson <rth@redhat.com>
......
......@@ -7950,7 +7950,7 @@ EOF
;;
esac
if test "$prefix" != "/usr" && test "$prefix" != "/usr/local" ; then
if test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
cat >> confdefs.h <<EOF
#define PREFIX_INCLUDE_DIR "$prefix/include"
EOF
......
......@@ -2202,7 +2202,7 @@ case "$target" in
;;
esac
if test "$prefix" != "/usr" && test "$prefix" != "/usr/local" ; then
if test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment