diff options
| author | Graydon Hoare <[email protected]> | 2011-03-21 11:02:15 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-21 11:02:15 -0700 |
| commit | 5f64612a14a55d6191e1943e8711f8686c03c0b4 (patch) | |
| tree | 7271c796c7266982622c3879c0cf4627ecbf9c16 | |
| parent | Add some C99 and C++ compatibility headers for MSVC (diff) | |
| download | rust-5f64612a14a55d6191e1943e8711f8686c03c0b4.tar.xz rust-5f64612a14a55d6191e1943e8711f8686c03c0b4.zip | |
Fix misuse of $(S) before definition, to permit running with valgrind suppressions.
| -rw-r--r-- | Makefile.in | 2 |
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 |