aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-18 06:19:27 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-18 06:19:27 +0000
commit190d68585d76b3af4b315e312b98eb81b08cd18b (patch)
tree3aa2b9a03bca8e5bc4f768bbe72bc1c973aecb37
parentf00785ff349f24e7aea15339dd8293d369ffdc58 (diff)
downloadexternal_llvm-190d68585d76b3af4b315e312b98eb81b08cd18b.zip
external_llvm-190d68585d76b3af4b315e312b98eb81b08cd18b.tar.gz
external_llvm-190d68585d76b3af4b315e312b98eb81b08cd18b.tar.bz2
Fix breakage caused by typos. Use 3-arg form of AC_DEFINE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10062 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--autoconf/aclocal.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/autoconf/aclocal.m4 b/autoconf/aclocal.m4
index 32db1b3..0a64803 100644
--- a/autoconf/aclocal.m4
+++ b/autoconf/aclocal.m4
@@ -6251,13 +6251,13 @@ AC_DEFUN([AC_LINK_USE_R],
[
AC_LANG_SAVE
AC_LANG_C
- oldcflags=${CFLAGS}
- CFLAGS="${CFLAGS} -Wl,-R."
- AC_LINK_IFELSE([int main() { return 0;}],[ac_cv_link_use_r=yes],[ac_cv_link_se_r=no])
- CFLAGS=${oldcflags}
+ oldcflags="$CFLAGS"
+ CFLAGS="$CFLAGS -Wl,-R."
+ AC_LINK_IFELSE([int main() { return 0; }],[ac_cv_link_use_r=yes],[ac_cv_link_use_r=no])
+ CFLAGS="$oldcflags"
AC_LANG_RESTORE
- if test "$ac_cv_link_use_r = yes"
+ if test "$ac_cv_link_use_r" = yes
then
- AC_DEFINE([HAVE_LINK_R],[1])
+ AC_DEFINE([HAVE_LINK_R],[1],[Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path.])
fi
])