From: Nicholas Nethercote Date: Thu, 5 Feb 2004 14:27:36 +0000 (+0000) Subject: Fix broken "make dist". X-Git-Tag: svn/VALGRIND_2_1_1~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=41dd3b13ee160365954c2872f3be2eaa69dcb00c;p=thirdparty%2Fvalgrind.git Fix broken "make dist". Doesn't fix "make distcheck", however, because this happens: /usr/bin/ld: cannot open linker script file ../../coregrind/x86/stage2.lds: No such file or directory For some reason I can't work out, that file is built when you make in a CVS tree, or manually from a "make dist" tarball, but not when you "make distcheck". git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2239 --- diff --git a/coregrind/Makefile.am b/coregrind/Makefile.am index f865eeed3b..f20a1c2c15 100644 --- a/coregrind/Makefile.am +++ b/coregrind/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = x86 demangle . docs +SUBDIRS = x86 demangle arch . docs add_includes = -I$(srcdir)/demangle -I$(top_srcdir)/include -I$(srcdir)/x86 diff --git a/coregrind/x86/Makefile.am b/coregrind/x86/Makefile.am index 4398182dc0..779a950c32 100644 --- a/coregrind/x86/Makefile.am +++ b/coregrind/x86/Makefile.am @@ -2,7 +2,6 @@ noinst_HEADERS = \ ume_archdefs.h EXTRA_DIST = \ - Make.inc \ ume_archdefs.c \ ume_archdefs.h \ ume_entry.S \