diff options
Diffstat (limited to 'dconfigure')
-rwxr-xr-x | dconfigure | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dconfigure b/dconfigure new file mode 100755 index 0000000..9cb0562 --- /dev/null +++ b/dconfigure @@ -0,0 +1,6 @@ +#!/bin/bash +if [[ -x /bin/dash ]]; then + CONFIG_SHELL=/bin/dash /bin/dash ./configure CONFIG_SHELL=/bin/dash "$@"; +else + ./configure "$@"; +fi |