Fix for the problem that the aclocal-missing directory was not included in make dist-gzip

svn path=/trunk/; revision=6964
This commit is contained in:
Jörg Mayer 2003-01-22 00:08:12 +00:00
parent 106bedb847
commit 2b78e3931d
2 changed files with 4 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.541 2003/01/21 00:39:57 gerald Exp $
# $Id: Makefile.am,v 1.542 2003/01/22 00:08:08 jmayer Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -1037,6 +1037,7 @@ EXTRA_DIST = \
aclocal-fallback/gtk-2.0.m4 \
aclocal-fallback/gtk.m4 \
aclocal-flags \
aclocal-missing/dummy \
autogen.sh \
capture-wpcap.c \
capture-wpcap.h \
@ -1157,11 +1158,6 @@ endif
#dist-hook:
# @rm -f $(distdir)/register.c
# Hack around the problem that I haven't found a way to include an
# empty directroy in the distribution tarball.
dist-hook:
mkdir -p aclocal-missing
DIST_SUBDIRS = tools wiretap doc epan plugins packaging gtk
if HAVE_PLUGINS

2
aclocal-missing/dummy Normal file
View File

@ -0,0 +1,2 @@
The existence of the file is a hack: I don't know how to teach
'make dist-gzip' to include the (empty) aclocal-missing directory.