mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5327 42af7a65-404d-4744-a932-0658087f49c3
24 lines
746 B
Diff
24 lines
746 B
Diff
diff --git a/utils/tweak.in b/utils/tweak.in
|
|
--- a/utils/tweak.in
|
|
+++ b/utils/tweak.in
|
|
@@ -1,8 +1,8 @@
|
|
#!/bin/bash
|
|
# Manipulate options in a .config file from the command line
|
|
|
|
-# If no prefix forced, use the default CONFIG_
|
|
-CONFIG_="${CONFIG_-CONFIG_}"
|
|
+# If no prefix forced, use the default @CONFIG_@
|
|
+CONFIG_="${CONFIG_-@CONFIG_@}"
|
|
|
|
usage() {
|
|
cat >&2 <<EOL
|
|
@@ -39,7 +39,7 @@
|
|
By default, config will upper-case the given symbol. Use --keep-case to keep
|
|
the case of all following symbols unchanged.
|
|
|
|
-config uses 'CONFIG_' as the default symbol prefix. Set the environment
|
|
+config uses '@CONFIG_@' as the default symbol prefix. Set the environment
|
|
variable CONFIG_ to the prefix to use. Eg.: CONFIG_="FOO_" config ...
|
|
EOL
|
|
exit 1
|