Repository: lucy-clownfish Updated Branches: refs/heads/master 3b32cceba -> 06eebd371
Fix quoting in configure script Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/900cd698 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/900cd698 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/900cd698 Branch: refs/heads/master Commit: 900cd6982b25a6f5ec0ea7368bb8291f19d3b8b4 Parents: 3b32cce Author: Nick Wellnhofer <[email protected]> Authored: Fri Sep 5 21:14:03 2014 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Fri Sep 5 21:14:03 2014 +0200 ---------------------------------------------------------------------- compiler/c/configure | 2 +- runtime/c/configure | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/900cd698/compiler/c/configure ---------------------------------------------------------------------- diff --git a/compiler/c/configure b/compiler/c/configure index 412e707..4e8e47e 100755 --- a/compiler/c/configure +++ b/compiler/c/configure @@ -45,5 +45,5 @@ echo $command $command || exit echo Running charmonizer -./charmonizer --cc=$CC --enable-c --enable-makefile $@ +./charmonizer --cc="$CC" --enable-c --enable-makefile "$@" http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/900cd698/runtime/c/configure ---------------------------------------------------------------------- diff --git a/runtime/c/configure b/runtime/c/configure index ae1f4f9..29b0c14 100755 --- a/runtime/c/configure +++ b/runtime/c/configure @@ -48,5 +48,5 @@ echo $command $command || exit echo Running charmonizer -./charmonizer --cc=$CC --enable-c --enable-makefile "$@" +./charmonizer --cc="$CC" --enable-c --enable-makefile "$@"
