Whitespace cleanup in root and 'build' folder.

* Removed trailing whitespace and empty lines at top of files.
This commit is contained in:
Oliver Tappe
2014-05-01 12:55:41 +02:00
parent 79895eed07
commit 8c54af563c
28 changed files with 189 additions and 196 deletions
+2 -2
View File
@@ -12,9 +12,9 @@ shift
# The second argument is the shell script that initializes the variables:
# tmpDir
# addBuildCompatibilityLibDir
#
#
# copyattr
# rmAttrs
# rmAttrs
# zip
# NOTE: rmAttrs and zip are only passed in when building zip
#
+1 -1
View File
@@ -95,7 +95,7 @@ if [ -z "$gccVersion" ]; then
fi
# touch all info files in order to avoid the dependency on makeinfo
# (which apparently doesn't work reliably on all the different host
# (which apparently doesn't work reliably on all the different host
# configurations and changes files which in turn appear as local changes
# to the VCS).
find "$binutilsSourceDir" "$gccSourceDir" -name \*.info -print0 | xargs -0 touch
+3 -3
View File
@@ -7,7 +7,7 @@ destination=CountryFlags.rdef
nr=0
for file in *
do
do
id=`echo "$file" | cut -b -2`
name=`echo "${file%%.*}" | cut -b 4-`
@@ -15,7 +15,7 @@ do
echo "resource($nr,\"$id\") #'VICN' array {" >> $destination
tail -n +3 "$file" >> $destination
echo >> $destination
nr=`expr $nr + 1`
nr=`expr $nr + 1`
echo \ $nr, $name, $id... OK
done