Version 3.0 patch level 16 The PATH in the tests target was causing the (incompatible in this case) system printenv to be used instead of the one in the tests dir. The run-func and run-varenv tests would fail without this patch. Errors looked like ..... 16d15 < UX:env: ERROR: No such file or directory: AVAR 18c17 < UX:env: ERROR: No such file or directory: AVAR --- > foo .....
-- Tim Rice Multitalents (707) 887-1469 [EMAIL PROTECTED]
--- bash-3.0/Makefile.in.old 2004-03-17 05:34:39.000000000 -0800 +++ bash-3.0/Makefile.in 2005-09-16 16:51:18.284178088 -0700 @@ -792,7 +792,7 @@ @-test -d tests || mkdir tests @cp $(TESTS_SUPPORT) tests @( cd $(srcdir)/tests && \ - PATH=$$PATH:$(BUILD_DIR)/tests THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} ) + PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} ) symlinks: $(SHELL) $(SUPPORT_SRC)fixlinks -s $(srcdir)
_______________________________________________ Bug-bash mailing list Bug-bash@gnu.org http://lists.gnu.org/mailman/listinfo/bug-bash