]> git.saurik.com Git - bison.git/commitdiff
* tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 6 Mar 2006 08:29:22 +0000 (08:29 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 6 Mar 2006 08:29:22 +0000 (08:29 +0000)
Don't use tabs inside commands; it messes up 'ps'.

ChangeLog
tests/Makefile.am

index ecd42da63b34b55a0af802b56806595b01065466..1ddeceadcdd5506ef700331b3c9f8708f0cf5167 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-06  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
+       Don't use tabs inside commands; it messes up 'ps'.
+       Problem reported by twlevo.
+
 2006-03-06  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        * tests/glr-regression.at (Uninitialized location when reporting
 2006-03-06  Joel E. Denny  <jdenny@ces.clemson.edu>
 
        * tests/glr-regression.at (Uninitialized location when reporting
index b26a8653812d01a1a62ebffcdfa4860f0f09d702..7cf188aa1d15e3572c88522632e02def3eb9f7b8 100644 (file)
@@ -2,7 +2,7 @@
 
 ## Makefile for Bison testsuite.
 
 
 ## Makefile for Bison testsuite.
 
-## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software
+## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software
 ## Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
 ## Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
@@ -30,7 +30,7 @@ MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
 ## ------------ ##
 
 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
 ## ------------ ##
 
 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
-       {                                       \
+       { \
          echo '# Signature of the current package.'; \
          echo 'm4_define([AT_PACKAGE_NAME],      [$(PACKAGE_NAME)])'; \
          echo 'm4_define([AT_PACKAGE_TARNAME],   [$(PACKAGE_TARNAME)])'; \
          echo '# Signature of the current package.'; \
          echo 'm4_define([AT_PACKAGE_NAME],      [$(PACKAGE_NAME)])'; \
          echo 'm4_define([AT_PACKAGE_TARNAME],   [$(PACKAGE_TARNAME)])'; \
@@ -87,11 +87,8 @@ maintainer-check-posix: $(TESTSUITE)
 
 .PHONY: maintainer-check-valgrind
 maintainer-check-valgrind: $(TESTSUITE)
 
 .PHONY: maintainer-check-valgrind
 maintainer-check-valgrind: $(TESTSUITE)
-       if test -n "$(VALGRIND)"; then                                      \
-          $(TESTSUITE) PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q'; \
-       else                                                                \
-         true;                                                             \
-       fi
+       test -z '$(VALGRIND)' || \
+          $(TESTSUITE) PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q'
 
 .PHONY: maintainer-check
 maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++
 
 .PHONY: maintainer-check
 maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++