OSDN Git Service

* itk/Makefile.in (distclean): Remove pkgIndex.tcl and
authorkseitz <kseitz>
Thu, 5 Sep 2002 20:22:58 +0000 (20:22 +0000)
committerkseitz <kseitz>
Thu, 5 Sep 2002 20:22:58 +0000 (20:22 +0000)
        itkConfig.sh
        * itcl/Makefile.in (distclean): Remove pkgIndex.tcl and
        itclConfig.sh
        * iwidgets3.0.0/Makefile.in (distclean): Remove pkgIndex.tcl and
        iwidgets.tcl.
        * configure.in (subdirs): New variable. Don't put AC_CONFIG_SUBDIRS
        macro into configure.in twice: it confuses autoconf. Instead use
        the variable to hold the subdirs to be configured.
        * configure: Regenerated.

itcl/ChangeLog
itcl/configure
itcl/configure.in
itcl/itcl/Makefile.in
itcl/itk/Makefile.in
itcl/iwidgets3.0.0/Makefile.in

index 0712266..8a01885 100644 (file)
@@ -1,3 +1,16 @@
+2002-09-05  Keith Seitz  <keiths@redhat.com>
+
+       * itk/Makefile.in (distclean): Remove pkgIndex.tcl and
+       itkConfig.sh
+       * itcl/Makefile.in (distclean): Remove pkgIndex.tcl and
+       itclConfig.sh
+       * iwidgets3.0.0/Makefile.in (distclean): Remove pkgIndex.tcl and
+       iwidgets.tcl.
+       * configure.in (subdirs): New variable. Don't put AC_CONFIG_SUBDIRS
+       macro into configure.in twice: it confuses autoconf. Instead use
+       the variable to hold the subdirs to be configured.
+       * configure: Regenerated.
+
 2002-09-04 Keith Seitz  <keiths@redhat.com> 
 
        From Chris Drexler  <ckolumbus@users.sourceforge.net>:
index 8a3dc5f..742a924 100755 (executable)
@@ -681,13 +681,15 @@ fi
 
 
 # Source-Navigator does not use the iwidgets packag
+subdirs=
+
 if test -d ${srcdir}/../snavigator && test ! -d ${srcdir}/../gdb/gdbtk ; then
     subdirs="itcl itk"
-
 else
-    subdirs="itcl itk itcl itk iwidgets3.0.0"
-
+    subdirs="itcl itk iwidgets3.0.0"
 fi
+subdirs="$subdirs"
+
 
 trap '' 1 2 15
 cat > confcache <<\EOF
@@ -973,7 +975,7 @@ if test "$no_recursion" != yes; then
     esac
   done
 
-  for ac_config_dir in itcl itk itcl itk iwidgets3.0.0; do
+  for ac_config_dir in $subdirs; do
 
     # Do not complain, so a configure script can configure whichever
     # parts of a large source tree are present.
index e468ada..ec53b3b 100644 (file)
@@ -25,11 +25,14 @@ AC_PREFIX_DEFAULT(/usr/local)
 AC_PREFIX_PROGRAM(itclsh)
 
 # Source-Navigator does not use the iwidgets packag
+subdirs=
+
 if test -d ${srcdir}/../snavigator && test ! -d ${srcdir}/../gdb/gdbtk ; then
-    AC_CONFIG_SUBDIRS(itcl itk)
+    subdirs="itcl itk"
 else
-    AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
+    subdirs="itcl itk iwidgets3.0.0"
 fi
+AC_CONFIG_SUBDIRS($subdirs)
 
 AC_OUTPUT(Makefile,
        chmod +x ${srcdir}/config/install-sh ${srcdir}/config/mkinstalldirs)
index 1fb42d9..060e096 100644 (file)
@@ -407,7 +407,7 @@ distclean: clean
        -rm -f *.tab.c
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
-       -rm -f config.status
+       -rm -f config.status itclConfig.sh pkgIndex.tcl
 
 #========================================================================
 # Install binary object libraries.  On Windows this includes both .dll and
index 4a5e8bb..c69f4f4 100644 (file)
@@ -381,7 +381,7 @@ distclean: clean
        -rm -f *.tab.c
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
-       -rm -f config.status
+       -rm -f config.status itkConfig.sh pkgIndex.tcl
 
 #========================================================================
 # Install binary object libraries.  On Windows this includes both .dll and
index 396195d..b1889d2 100644 (file)
@@ -226,6 +226,7 @@ clean:
 
 distclean: clean
        rm -f Makefile config.status config.cache config.log
+       rm -f iwidgets.tcl pkgIndex.tcl
 
 depend:
        makedepend -- $(CC_SWITCHES) -- $(SRCS)