Skip to content

Commit

Permalink
[linux-yocto][PATCH] ver_linux: Use /usr/bin/awk instead of /bin/awk
Browse files Browse the repository at this point in the history
Most Linux distributions contain awk in /usr/bin by default, not in /bin. This
script's suggested use is for creating version information for bug reporting.

Without this patch, Poky's kernel-devsrc package fails to install correctly
because the runtime dependency of /bin/awk is not found.  This package contains
all the source and scripts including ver_linux.
  • Loading branch information
Saul Wold authored and markgross committed Jan 30, 2017
1 parent 09f886d commit a0ddfd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ver_linux
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/awk -f
#!/usr/bin/awk -f
# Before running this script please ensure that your PATH is
# typical as you use for compilation/installation. I use
# /bin /sbin /usr/bin /usr/sbin /usr/local/bin, but it may
Expand Down

0 comments on commit a0ddfd7

Please sign in to comment.