commit | bca4ea8b68403e6f751341b82c65937f14590679 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Tue Jan 24 20:52:42 2017 +0100 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Tue Jan 24 20:52:42 2017 +0100 |
tree | 21c637e653ceaa259599cecf8fb57a9de8ad6172 | |
parent | 89193f985bf50af702e0f98a3c86573277c03287 [diff] [blame] |
remove "local" bashism from a few scripts Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/examples/depmod b/examples/depmod index d769590..8d421c6 100755 --- a/examples/depmod +++ b/examples/depmod
@@ -7,7 +7,7 @@ # Licensed under GPLv2, see file LICENSE in this source tree. # -local BASE="${1:-/usr/lib/modules}" +BASE="${1:-/usr/lib/modules}" find "$BASE" -name '*.ko.gz' | while read I ; do N=`basename "$I" '.ko.gz'`