public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
From: Andrew Cagney <ac131313@ges.redhat.com>
To: Keith Seitz <keiths@redhat.com>
Cc: insight@sources.redhat.com
Subject: Re: Insight snapshots down -- PATCH
Date: Mon, 09 Sep 2002 11:53:00 -0000	[thread overview]
Message-ID: <3D7CEE46.5080302@ges.redhat.com> (raw)
In-Reply-To: <Pine.LNX.4.44.0209051325490.1407-100000@valrhona.uglyboxes.com>

> On Thu, 5 Sep 2002, Andrew Cagney wrote:
> 
> 
>> FYI,
>> 
>> There is a problem with insight snapshots.  The log shows:
>> 
> 
>> > Making distclean in doc
>> > itcl: make distclean
>> > itk: make distclean
>> > itcl: make distclean
>> > make[5]: *** No rule to make target `distclean'.  Stop.
>> > make[4]: *** [distclean] Error 1
>> > make[3]: *** [do-distclean] Error 1
>> > make[2]: *** [do-proto-toplev] Error 2
>> > make[1]: *** [gdb-tar] Error 2
>> > make: *** [insight+dejagnu.tar] Error 2
> 
> 
> Hi,
> 
> I've committed the following patch which fixes the problem (and finishes 
> the distclean). Simple autoconf problem.

Thanks!  I've re-enabled the snapshots.  Lets see what happens next.

Andrew


> Keith
> 
> ChangeLog
> 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.
> 
> Patch
> Index: configure.in
> ===================================================================
> RCS file: /cvs/src/src/itcl/configure.in,v
> retrieving revision 1.2
> diff -p -r1.2 configure.in
> *** configure.in	6 Aug 2002 18:51:13 -0000	1.2
> --- configure.in	5 Sep 2002 20:21:37 -0000
> *************** AC_PREFIX_DEFAULT(/usr/local)
> *** 25,35 ****
>   AC_PREFIX_PROGRAM(itclsh)
>   
>   # Source-Navigator does not use the iwidgets packag
>   if test -d ${srcdir}/../snavigator && test ! -d ${srcdir}/../gdb/gdbtk ; then
> !     AC_CONFIG_SUBDIRS(itcl itk)
>   else
> !     AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
>   fi
>   
>   AC_OUTPUT(Makefile,
>   	chmod +x ${srcdir}/config/install-sh ${srcdir}/config/mkinstalldirs)
> --- 25,38 ----
>   AC_PREFIX_PROGRAM(itclsh)
>   
>   # 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 iwidgets3.0.0"
>   fi
> + AC_CONFIG_SUBDIRS($subdirs)
>   
>   AC_OUTPUT(Makefile,
>   	chmod +x ${srcdir}/config/install-sh ${srcdir}/config/mkinstalldirs)
> Index: itcl/Makefile.in
> ===================================================================
> RCS file: /cvs/src/src/itcl/itcl/Makefile.in,v
> retrieving revision 1.1.1.1
> diff -p -r1.1.1.1 Makefile.in
> *** itcl/Makefile.in	9 Sep 2001 19:49:04 -0000	1.1.1.1
> --- itcl/Makefile.in	5 Sep 2002 20:21:37 -0000
> *************** distclean: clean
> *** 407,413 ****
>   	-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
>   
>   #========================================================================
>   # Install binary object libraries.  On Windows this includes both .dll and
> --- 407,413 ----
>   	-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 itclConfig.sh pkgIndex.tcl
>   
>   #========================================================================
>   # Install binary object libraries.  On Windows this includes both .dll and
> Index: itk/Makefile.in
> ===================================================================
> RCS file: /cvs/src/src/itcl/itk/Makefile.in,v
> retrieving revision 1.1.1.1
> diff -p -r1.1.1.1 Makefile.in
> *** itk/Makefile.in	9 Sep 2001 19:49:05 -0000	1.1.1.1
> --- itk/Makefile.in	5 Sep 2002 20:21:37 -0000
> *************** distclean: clean
> *** 381,387 ****
>   	-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
>   
>   #========================================================================
>   # Install binary object libraries.  On Windows this includes both .dll and
> --- 381,387 ----
>   	-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 itkConfig.sh pkgIndex.tcl
>   
>   #========================================================================
>   # Install binary object libraries.  On Windows this includes both .dll and
> Index: iwidgets3.0.0/Makefile.in
> ===================================================================
> RCS file: /cvs/src/src/itcl/iwidgets3.0.0/Makefile.in,v
> retrieving revision 1.3
> diff -p -r1.3 Makefile.in
> *** iwidgets3.0.0/Makefile.in	6 Aug 2002 19:24:25 -0000	1.3
> --- iwidgets3.0.0/Makefile.in	5 Sep 2002 20:21:37 -0000
> *************** clean:
> *** 226,231 ****
> --- 226,232 ----
>   
>   distclean: clean
>   	rm -f Makefile config.status config.cache config.log
> + 	rm -f iwidgets.tcl pkgIndex.tcl
>   
>   depend:
>   	makedepend -- $(CC_SWITCHES) -- $(SRCS)
> 
> 


      reply	other threads:[~2002-09-09 18:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-05 12:30 Insight snapshots down Andrew Cagney
2002-09-05 13:24 ` Insight snapshots down -- PATCH Keith Seitz
2002-09-09 11:53   ` Andrew Cagney [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3D7CEE46.5080302@ges.redhat.com \
    --to=ac131313@ges.redhat.com \
    --cc=insight@sources.redhat.com \
    --cc=keiths@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).