[tsan] fix old-style makefile -- we still need them to run our tests

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@156907 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/tsan/rtl/Makefile.old b/lib/tsan/rtl/Makefile.old
index b826a75..3c715eb 100644
--- a/lib/tsan/rtl/Makefile.old
+++ b/lib/tsan/rtl/Makefile.old
@@ -4,7 +4,7 @@
 endif
 
 # For interception. FIXME: move interception one level higher.
-INCLUDES= -I../../asan
+INCLUDES= -I../..
 EXTRA_CXXFLAGS=-fno-exceptions
 NO_SYSROOT=--sysroot=.
 CXXFLAGS+=$(EXTRA_CXXFLAGS)
@@ -81,7 +81,7 @@
 %.o: %.cc Makefile.old $(LIBTSAN_HEADERS)
 	$(CXX) $(CXXFLAGS) $(INCLUDES) $(NO_SYSROOT) -c $<
 
-%.o: ../../asan/interception/%.cc
+%.o: ../../interception/%.cc
 	$(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@ 
 
 libtsan.a: $(LIBTSAN_OBJ)