kbuild: fix scripts/adjust_autoksyms.sh* for the no modules case
authorNicolas Pitre <nicolas.pitre@linaro.org>
Thu, 8 Dec 2016 19:17:03 +0000 (14:17 -0500)
committerMichal Marek <mmarek@suse.com>
Sun, 11 Dec 2016 21:30:10 +0000 (22:30 +0100)
When CONFIG_TRIM_UNUSED_KSYMS=y and no modules are actually selected,
the adjust_autoksyms.sh script fails with:

sed: can't read .tmp_versions/*.mod: No such file or directory

Let's cope with that case gracefully.

Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/adjust_autoksyms.sh

index 8dc1918b6783dd337590f97b5aa33be5125980ea..513da1a4a2daaf7ed329b816c49d787916e72e3b 100755 (executable)
@@ -59,6 +59,7 @@ cat > "$new_ksyms_file" << EOT
  */
 
 EOT
+[ "$(ls -A "$MODVERDIR")" ] &&
 sed -ns -e '3{s/ /\n/g;/^$/!p;}' "$MODVERDIR"/*.mod | sort -u |
 while read sym; do
        if [ -n "$CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX" ]; then