From 6eedf06fcc224648155bc5253d6fe1975be8da00 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 13 Oct 2010 17:50:54 -0500 Subject: Fix bash shell location check BASH is defined when you are actually using bash during configure, which sucks because it ends up being '/bin/sh', messing up all of our scripts. Change the name of the variable we use in configure, and also ensure we get a full path to the executable by using AC_PATH_PROGS rather than AC_CHECK_PROGS. Finally, change the variable name everywhere we use it. Signed-off-by: Dan McGee --- contrib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/Makefile.am') diff --git a/contrib/Makefile.am b/contrib/Makefile.am index 01997631..55366b47 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -29,7 +29,7 @@ MOSTLYCLEANFILES = $(OURFILES) *.tmp edit = sed \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@localstatedir[@]|$(localstatedir)|g' \ - -e 's|@BASH[@]|$(BASH)|g' + -e 's|@BASH_SHELL[@]|$(BASH_SHELL)|g' $(OURFILES): Makefile @echo ' ' GEN $@; -- cgit v1.2.3-24-g4f1b