diff options
author | Guy Harris <guy@alum.mit.edu> | 1998-11-17 02:02:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1998-11-17 02:02:46 +0000 |
commit | d8e026fc3bc769e0b6811c10524a8838ffce3e14 (patch) | |
tree | a79f5ee27c36e71e5c58808cde6c14bd91a0b8d1 /configure.in | |
parent | 3e056dd83a4b46d452557751a60a9e99adbd0f2d (diff) | |
download | wireshark-d8e026fc3bc769e0b6811c10524a8838ffce3e14.tar.gz wireshark-d8e026fc3bc769e0b6811c10524a8838ffce3e14.tar.bz2 wireshark-d8e026fc3bc769e0b6811c10524a8838ffce3e14.zip |
Un-comment "AC_CONFIG_SUBDIRS()", so that it'll run "configure" in the
"wiretap" subdirectory, and thus leave a "config.status" file around so
that one of the "auto{make,configure,header}" guys doesn't complain when
rebuilding stuff that it can't open "config.status". (The
"automake"-generated Makefile will recurse into "wiretap", and, at least
if you're doing builds from a tree freshly checked out from CVS, "XXX"
files will probably have been checked out before "XXX.in", so "make"
will try to reconstruct the "XXX" files from the "XXX.in" files.)
That also obviates the need to make "wiretap/Makefile" here.
We can also re-delete "wiretap/Makefile" from CVS - the problem that
caused me to bring it back wasn't caused by its absence, it was caused
by the above. As "Makefile"s generated by "configure" scripts depend on
the particular system on which you ran "configure", there's no One True
Makefile so "Makefile" should'n't be under CVS.
svn path=/trunk/; revision=95
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 1bb906d80e..1824227b98 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.12 1998/11/15 05:40:23 guy Exp $ +# $Id: configure.in,v 1.13 1998/11/17 02:02:46 guy Exp $ dnl Process this file with autoconf to produce a configure script. AC_INIT(etypes.h) @@ -116,5 +116,5 @@ AC_SUBST(SNPRINTF_C) AC_SUBST(SNPRINTF_O) AM_CONFIG_HEADER(config.h) -#AC_CONFIG_SUBDIRS(wiretap) -AC_OUTPUT(Makefile wiretap/Makefile) +AC_CONFIG_SUBDIRS(wiretap) +AC_OUTPUT(Makefile) |