Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
7456e4e5
Commit
7456e4e5
authored
Apr 17, 2009
by
Friedemann Kleint
Browse files
Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainline
parents
7d41e048
d0a97d0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/manual/distribution/elflint
0 → 100755
View file @
7456e4e5
#!/bin/bash
thisdir
=
$(
dirname
"
$(
readlink
-nf
$0
)
"
)
rootdir
=
$(
cd
"
${
thisdir
}
/../../.."
;
pwd
)
find
"
${
rootdir
}
"
-type
f
-a
-executable
|
while
read
file
;
do
# filter out shell scripts by checking the first 2 bytes
if
test
`
xxd
-ps
-len
2
${
file
}
`
!=
2321
;
then
#echo "${file}"
result
=
`
eu-elflint
--gnu-ld
--strict
"
${
file
}
"
|
grep
-v
RPATH
`
if
test
-n
"
${
result
}
"
;
then
echo
"
${
file
}
:
${
result
}
"
fi
fi
done
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment