diff options
author | Denys Vlasenko | 2010-05-17 01:59:16 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-05-17 01:59:16 +0200 |
commit | 3015a1351a355434cf5b307114c0506e15f4214a (patch) | |
tree | 845b17279c0f784dc5d99be126c641ba2c4caf47 | |
parent | 248c324f7c6d407467ab3ad9057dfe33fb2723d8 (diff) | |
download | busybox-3015a1351a355434cf5b307114c0506e15f4214a.zip busybox-3015a1351a355434cf5b307114c0506e15f4214a.tar.gz |
scripts/gen_build_files.sh: revert to using /bin/sh
People want busybox to build w/o bash, with /bin/sh = ash
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | scripts/gen_build_files.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_build_files.sh b/scripts/gen_build_files.sh index ea14de5..6982877 100755 --- a/scripts/gen_build_files.sh +++ b/scripts/gen_build_files.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # bashism: # "read -r" without variable name reads line into $REPLY # without stripping whitespace. |