From: paul Date: Mon, 25 Apr 2005 13:52:26 +0000 (+0000) Subject: 2005-04-25 Paul Jakma X-Git-Tag: frr-2.0-rc1~3050 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ab59ae3519d986d4544ba1ca15d6c17b3f52f86b;p=matthieu%2Ffrr.git 2005-04-25 Paul Jakma * Makefile.am: Refer to source files via srcdir variable, fix out-of-tree build breakage. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 5d3239b6ea..3b619d8bd8 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2005-04-25 Paul Jakma + + * Makefile.am: Refer to source files via srcdir variable, fix + out-of-tree build breakage. + 2005-04-22 Andrew J. Schorr * thread.h: Fix type for struct thread_master add_type: should be diff --git a/lib/Makefile.am b/lib/Makefile.am index 3913eb641c..774a7f3dcb 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -29,5 +29,5 @@ pkginclude_HEADERS = \ EXTRA_DIST = regex.c regex-gnu.h memtypes.awk -memtypes.h: memtypes.c memtypes.awk - ($(GAWK) -f memtypes.awk memtypes.c > memtypes.h) +memtypes.h: $(srcdir)/memtypes.c $(srcdir)/memtypes.awk + ($(GAWK) -f $(srcdir)/memtypes.awk $(srcdir)memtypes.c > memtypes.h)