Commit 71155dba authored by Dom Sekotill's avatar Dom Sekotill
Browse files

auto-build: cmds w/ shell ops invoke 'bash -c ...'

auto-build commands that use shell operations like '&&' need to
actually invoke the shell. The autoconf profile command now
invokes 'bash -c "... && ..."'
parent 11f0d07e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ profile ()
	local build pattern replace_cmd
	case "$1" in
		autotools)
			build='autoreconf --install && configure && make dist'
			build='bash -c "autoreconf --install && configure && make dist"'
			pattern='$(distdir).{tar{,.*},zip}'
			replace_cmd=_make_variable_replace
			;;