diff options
| author | Patrick Walton <[email protected]> | 2011-03-21 11:55:17 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-21 11:56:45 -0700 |
| commit | a5caa310e4ab803d9f467d1541b7f6eeb7361f54 (patch) | |
| tree | ecd61a507af652a8c363a7ff18151a8511cd39ec | |
| parent | More conservative rule for clean. (diff) | |
| download | rust-a5caa310e4ab803d9f467d1541b7f6eeb7361f54.tar.xz rust-a5caa310e4ab803d9f467d1541b7f6eeb7361f54.zip | |
build: Support spaces in CFG_LDPATH.
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 12b67937..8975a562 100644 --- a/Makefile.in +++ b/Makefile.in @@ -70,8 +70,8 @@ ifdef CFG_WINDOWSY CFG_LIB_NAME=$(1).dll CFG_LDPATH :=$(CFG_LDPATH):$(CFG_LLVM_BINDIR) CFG_LDPATH :=$(CFG_LDPATH):$$PATH - CFG_RUN_TEST=PATH=$(CFG_LDPATH) $(1) - CFG_RUN_TARG=PATH=$(CFG_LDPATH) $(1) + CFG_RUN_TEST=PATH="$(CFG_LDPATH)" $(1) + CFG_RUN_TARG=PATH="$(CFG_LDPATH)" $(1) CFG_PATH_MUNGE := $(strip | perl -p \ -e 's@\\(.)@/\1@go;' \ |