This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH to dejagnu/example/calc/Makefile.in


Just a little something I noticed.  Applied as obvious.

2002-02-28  Jason Merrill  <jason@redhat.com>

	* example/calc/Makefile.in (check): Add ./ to CALC value to avoid
	PATH issues.  Add missing ../.

*** Makefile.in.~1~	Thu Feb 28 10:44:49 2002
--- Makefile.in	Thu Feb 28 11:15:00 2002
***************
*** 1,8 ****
! # Copyright (C) 92, 93, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
! # the Free Software Foundation; either version 1, or (at your option)
  # any later version.
  #
  # This program is distributed in the hope that it will be useful,
--- 1,8 ----
! # Copyright (C) 92, 93, 94, 95, 96, 97, 98, 99, 2002 Free Software Foundation, Inc.
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
! # the Free Software Foundation; either version 2, or (at your option)
  # any later version.
  #
  # This program is distributed in the hope that it will be useful,
***************
*** 12,18 ****
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
! # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  #
  
  # target name
--- 12,18 ----
  #
  # You should have received a copy of the GNU General Public License
  # along with this program; if not, write to the Free Software
! # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  #
  
  # target name
*************** check:	site.exp all
*** 64,73 ****
  	rootme=`pwd`; export rootme; \
          srcdir=${srcdir} ; export srcdir ; \
          EXPECT=${EXPECT} ; export EXPECT ; \
!         if [ -f $${rootme}/../../expect/expect ] ; then  \
!            TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
             export TCL_LIBRARY ; fi ; \
! 	${RUNTEST} ${RUNTESTFLAGS} --tool ${PROG} CALC=${PROG} --srcdir ${srcdir}/testsuite
  
  site.exp: ./config.status Makefile
  	@echo "Making a new config file..."
--- 64,73 ----
  	rootme=`pwd`; export rootme; \
          srcdir=${srcdir} ; export srcdir ; \
          EXPECT=${EXPECT} ; export EXPECT ; \
!         if [ -f $${rootme}/../../../expect/expect ] ; then  \
!            TCL_LIBRARY=$${srcdir}/../../../tcl/library ; \
             export TCL_LIBRARY ; fi ; \
! 	${RUNTEST} ${RUNTESTFLAGS} --tool ${PROG} CALC=./${PROG} --srcdir ${srcdir}/testsuite
  
  site.exp: ./config.status Makefile
  	@echo "Making a new config file..."
*************** configure: $(srcdir)/configure.in $(srcd
*** 104,110 ****
  	@echo "Rebuilding configure..."
  	@cd ${srcdir} ;\
  	autoconf --localdir=${srcdir}/../..
!      
  config.status:
  	@echo "Rebuilding config.status..."
  	$(SHELL) ./config.status --recheck
--- 104,110 ----
  	@echo "Rebuilding configure..."
  	@cd ${srcdir} ;\
  	autoconf --localdir=${srcdir}/../..
! 
  config.status:
  	@echo "Rebuilding config.status..."
  	$(SHELL) ./config.status --recheck

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]