aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-03-21 11:02:15 -0700
committerGraydon Hoare <[email protected]>2011-03-21 11:02:15 -0700
commit5f64612a14a55d6191e1943e8711f8686c03c0b4 (patch)
tree7271c796c7266982622c3879c0cf4627ecbf9c16
parentAdd some C99 and C++ compatibility headers for MSVC (diff)
downloadrust-5f64612a14a55d6191e1943e8711f8686c03c0b4.tar.xz
rust-5f64612a14a55d6191e1943e8711f8686c03c0b4.zip
Fix misuse of $(S) before definition, to permit running with valgrind suppressions.
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 964006b9..d4958d68 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -116,7 +116,7 @@ ifdef CFG_UNIXY
CFG_VALGRIND += --leak-check=full \
--error-exitcode=1 \
--quiet --vex-iropt-level=0 \
- --suppressions=$(S)src/etc/x86.supp
+ --suppressions=$(CFG_SRC_DIR)src/etc/x86.supp
endif
endif