From: Clement Chauplannaz Date: Sun, 12 May 2013 19:08:51 +0000 (+0200) Subject: scripts/config: replace hard-coded script name by a dynamic value X-Git-Tag: next-20130628~85^2~2^3~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7387778510b7deaff866277877c5550c3a14f1fb;p=karo-tx-linux.git scripts/config: replace hard-coded script name by a dynamic value The script `config' prints its name in usage() function. It is currently hard-coded to value `config'. However, the script may be reused under a different name in contexts other than the Linux Kernel. Replace the hard-coded value `config' by the name of the script at runtime. Signed-off-by: Clement Chauplannaz Acked-by: Andi Kleen Signed-off-by: Yann E. MORIN --- diff --git a/scripts/config b/scripts/config index bb4d3deb6d1c..6b3272ef6ec7 100755 --- a/scripts/config +++ b/scripts/config @@ -1,6 +1,8 @@ #!/bin/bash # Manipulate options in a .config file from the command line +myname=${0##*/} + # If no prefix forced, use the default CONFIG_ CONFIG_="${CONFIG_-CONFIG_}" @@ -8,7 +10,7 @@ usage() { cat >&2 <