Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167418
b: refs/heads/master
c: a3ee947
h: refs/heads/master
v: v3
  • Loading branch information
Amerigo Wang authored and Sam Ravnborg committed Oct 11, 2009
1 parent e92d173 commit 656aed9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db9038c89d129383a9db2afcb72b504fe54f6edf
refs/heads/master: a3ee9470e6ccce28b5c2a1c098a5ee5aa053c668
2 changes: 1 addition & 1 deletion trunk/scripts/Kbuild.include
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ as-option = $(call try-run,\
# Usage: cflags-y += $(call as-instr,instr,option1,option2)

as-instr = $(call try-run,\
echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3))
/bin/echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3))

# cc-option
# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
Expand Down
4 changes: 2 additions & 2 deletions trunk/scripts/checkkconfigsymbols.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ paths="$@"
# Doing this once at the beginning saves a lot of time, on a cache-hot tree.
Kconfigs="`find . -name 'Kconfig' -o -name 'Kconfig*[^~]'`"

echo -e "File list \tundefined symbol used"
/bin/echo -e "File list \tundefined symbol used"
find $paths -name '*.[chS]' -o -name 'Makefile' -o -name 'Makefile*[^~]'| while read i
do
# Output the bare Kconfig variable and the filename; the _MODULE part at
Expand Down Expand Up @@ -54,6 +54,6 @@ while read symb files; do
# beyond the purpose of this script.
symb_bare=`echo $symb | sed -e 's/_MODULE//'`
if ! grep -q "\<$symb_bare\>" $Kconfigs; then
echo -e "$files: \t$symb"
/bin/echo -e "$files: \t$symb"
fi
done|sort

0 comments on commit 656aed9

Please sign in to comment.