diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2012-12-13 10:59:00 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2012-12-13 11:04:37 +0100 |
commit | 4209a88759c41aac54465b6d4389b7daaad6ac80 (patch) | |
tree | bab409239b92b7151284b03640c07aa3f18127f6 /lib | |
parent | fd76f41ac0267dc4cf5438ac8f5e23fae6810d31 (diff) |
build: fix dist tarball
automake file lists haven't quite kept up with recent changes, time to
fix them up so the dist tarball actually works...
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 690c18ff..0ec5b4c9 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -29,7 +29,12 @@ pkginclude_HEADERS = \ privs.h sigevent.h pqueue.h jhash.h zassert.h memtypes.h \ workqueue.h route_types.h -EXTRA_DIST = regex.c regex-gnu.h memtypes.awk route_types.pl route_types.txt +EXTRA_DIST = \ + regex.c regex-gnu.h \ + queue.h \ + memtypes.awk \ + route_types.pl route_types.txt \ + gitversion.pl memtypes.h: $(srcdir)/memtypes.c $(srcdir)/memtypes.awk ($(GAWK) -f $(srcdir)/memtypes.awk $(srcdir)/memtypes.c > $@) |