diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2015-01-12 05:14:45 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-01-13 10:10:38 -0600 |
commit | 0fa4240249058f327cfd283f9da2deb8dff664f1 (patch) | |
tree | 667b73cffedffb43d790abbc0b17152df57c1de9 /aclocal.m4 | |
parent | 023439980f6ef6ec051f676279ed2be5f031efe6 (diff) | |
download | haskell-0fa4240249058f327cfd283f9da2deb8dff664f1.tar.gz |
aclocal.m4: fix == bashism in FIND_LLVM_PROG
Reviewers: austin, erikd
Reviewed By: erikd
Subscribers: erikd, carter, thomie
Projects: #ghc
Differential Revision: https://phabricator.haskell.org/D590
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 6caa10a916..6933e6f647 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -2072,7 +2072,7 @@ AC_DEFUN([XCODE_VERSION],[ # AC_DEFUN([FIND_LLVM_PROG],[ FP_ARG_WITH_PATH_GNU_PROG_OPTIONAL_NOTARGET([$1], [$2], [$3]) - if test "$$1" == ""; then + if test "$$1" = ""; then save_IFS=$IFS IFS=":;" for p in ${PATH}; do |