git.annexia.org
/
fedora-mingw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af90033
)
Allow '.' in dll names for find-requires
author
Daniel P. Berrange
<berrange@redhat.com>
Wed, 10 Sep 2008 08:58:48 +0000
(
04:58
-0400)
committer
Daniel P. Berrange
<berrange@redhat.com>
Wed, 10 Sep 2008 08:58:48 +0000
(
04:58
-0400)
filesystem/mingw-find-requires.sh
patch
|
blob
|
history
diff --git
a/filesystem/mingw-find-requires.sh
b/filesystem/mingw-find-requires.sh
index
6516500
..
6b9848a
100755
(executable)
--- a/
filesystem/mingw-find-requires.sh
+++ b/
filesystem/mingw-find-requires.sh
@@
-22,7
+22,7
@@
echo 'mingw-runtime'
dlls=$(echo $filelist | tr [:blank:] '\n' | grep '\.dll$')
for f in $dlls; do
- $OBJDUMP -p $f | grep 'DLL Name' | grep -Eo '[-_[:alnum:]]+\.dll' |
+ $OBJDUMP -p $f | grep 'DLL Name' | grep -Eo '[-
.
_[:alnum:]]+\.dll' |
tr [:upper:] [:lower:] |
sed 's/\(.*\)/mingw(\1)/'
done | sort -u