]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix build problems on SuSE 8.1 -- -I.. not included in compile cmds
authorJulian Seward <jseward@acm.org>
Tue, 1 Oct 2002 00:18:22 +0000 (00:18 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 1 Oct 2002 00:18:22 +0000 (00:18 +0000)
for .S files.  Possibly due to the presence of the following on this dist:

  autoconf (GNU Autoconf) 2.53
  automake (GNU automake) 1.6.3

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1148

coregrind/Makefile.am
memcheck/Makefile.am

index fc442e1f6b7f9281c4590ea356a8de446872e740..1a15b6f2555a3172c4c8d2a4ae5991962ab266ad 100644 (file)
@@ -2,7 +2,9 @@
 SUBDIRS = demangle . docs
 
 CFLAGS = $(WERROR) -DVG_LIBDIR="\"$(libdir)"\" \
-               -Winline -Wall -Wshadow -O -fomit-frame-pointer @PREFERRED_STACK_BOUNDARY@ -g
+               -Winline -Wall -Wshadow -O -fomit-frame-pointer \
+               @PREFERRED_STACK_BOUNDARY@ -g \
+               $(INCLUDES)
 
 valdir = $(libdir)/valgrind
 
index 01d0cebb604ba9a4d9238f4ac864869ad950a29d..5744957ff331222c41e002fd83e9206c32f83db5 100644 (file)
@@ -4,7 +4,9 @@ SUBDIRS = . tests docs
 INCLUDES = -I$(top_srcdir)/include
 
 CFLAGS = $(WERROR) -DVG_LIBDIR="\"$(libdir)"\" \
-               -Winline -Wall -Wshadow -O -fomit-frame-pointer @PREFERRED_STACK_BOUNDARY@ -g
+               -Winline -Wall -Wshadow -O -fomit-frame-pointer \
+               @PREFERRED_STACK_BOUNDARY@ -g \
+               $(INCLUDES)
 
 valdir = $(libdir)/valgrind