summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2003-01-22 00:08:12 +0000
committerJörg Mayer <jmayer@loplof.de>2003-01-22 00:08:12 +0000
commit2b78e3931d987bbf018c493aa9b96b2a3d137bc5 (patch)
treead5b0f32f380c79bdeaa565fadbc769627073f8e
parent106bedb847a7beca5209f822ecc21b8ad909d7fd (diff)
downloadwireshark-2b78e3931d987bbf018c493aa9b96b2a3d137bc5.tar.gz
Fix for the problem that the aclocal-missing directory was not included in make dist-gzip
svn path=/trunk/; revision=6964
-rw-r--r--Makefile.am8
-rw-r--r--aclocal-missing/dummy2
2 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index 0e2f25c77b..b1336306f2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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
diff --git a/aclocal-missing/dummy b/aclocal-missing/dummy
new file mode 100644
index 0000000000..b8abf3cb9a
--- /dev/null
+++ b/aclocal-missing/dummy
@@ -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.