Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122987
b: refs/heads/master
c: a6ba0cb
h: refs/heads/master
i:
  122985: baf3817
  122983: fa7a9c9
v: v3
  • Loading branch information
Jiri Slaby authored and Sam Ravnborg committed Dec 13, 2008
1 parent db24830 commit f1f5418
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: 709cc372cad628846d73447edfd95ac39c8e2319
refs/heads/master: a6ba0cb35da64d658b7a01ea4597416f8522d5e1
10 changes: 5 additions & 5 deletions trunk/scripts/tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Uses the following environment variables:
# ARCH, SUBARCH, srctree, src, obj

if [ $KBUILD_VERBOSE == 1 ]; then
if [ "$KBUILD_VERBOSE" = "1" ]; then
set -x
fi

Expand All @@ -18,7 +18,7 @@ ignore="( -name SCCS -o -name BitKeeper -o -name .svn -o \
-prune -o"

# Do not use full path is we do not use O=.. builds
if [ "${KBUILD_SRC}" == "" ]; then
if [ "${KBUILD_SRC}" = "" ]; then
tree=
else
tree=${srctree}/
Expand Down Expand Up @@ -135,10 +135,10 @@ xtags()


# Support um (which uses SUBARCH)
if [ ${ARCH} == um ]; then
if [ $SUBARCH == i386 ]; then
if [ "${ARCH}" = "um" ]; then
if [ "$SUBARCH" = "i386" ]; then
archinclude=x86
elif [ $SUBARCH == x86_64 ]; then
elif [ "$SUBARCH" = "x86_64" ]; then
archinclude=x86
else
archinclude=${SUBARCH}
Expand Down

0 comments on commit f1f5418

Please sign in to comment.