summaryrefslogtreecommitdiffstats
path: root/dconfigure
blob: 9cb056203be1988f75f3d855a8b181135d246684 (plain)
1
2
3
4
5
6
#!/bin/bash
if [[ -x /bin/dash ]]; then
	CONFIG_SHELL=/bin/dash /bin/dash ./configure CONFIG_SHELL=/bin/dash "$@";
else
	./configure "$@";
fi