diff options
| author | Patrick Walton <[email protected]> | 2011-03-24 12:40:07 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-24 12:41:00 -0700 |
| commit | e2d4fb0fb2089adbafecbeb6f3601d86dc44f301 (patch) | |
| tree | 7fdf026100ddef1e1dfc1acc80b06003c990bea5 /Makefile.in | |
| parent | Improve error message when the lexer sees a bad character (diff) | |
| download | rust-e2d4fb0fb2089adbafecbeb6f3601d86dc44f301.tar.xz rust-e2d4fb0fb2089adbafecbeb6f3601d86dc44f301.zip | |
build: Use "true" instead of /bin/true, since it's /usr/bin/true on Darwin
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 866a6b7a..f5b7cd93 100644 --- a/Makefile.in +++ b/Makefile.in @@ -95,7 +95,7 @@ endif ifdef CFG_UNIXY CFG_INFO := $(info cfg: unix-y environment) - CFG_PATH_MUNGE := /bin/true + CFG_PATH_MUNGE := true CFG_EXE_SUFFIX := CFG_LDPATH :=$(CFG_LDPATH):$(CFG_LLVM_LIBDIR) CFG_RUN_TARG=\ |