Mercurial > mplayer.hg
annotate darwinfixlib.sh @ 8014:3d6904cee13e
The first language ripped is set as the default language
by writing the langidx tag with the index of this language.
patch by Arne Driescher <driescher@mpi-magdeburg.mpg.de>
(accepted by Kim Minh Kaplan)
author | arpi |
---|---|
date | Fri, 01 Nov 2002 00:01:53 +0000 |
parents | 184f37880f90 |
children |
rev | line source |
---|---|
5950
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
1 #!/bin/sh |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
2 if [ `uname -s` = 'Darwin' ]; then |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
3 echo "Fixing libs with ranlib for Darwin (MacOSX)" |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
4 for i in $* ; do |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
5 if (echo $i | grep \\.a) >/dev/null 2>&1; then |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
6 echo "ranlib $i" |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
7 (ranlib $i) >/dev/null 2>&1 |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
8 fi |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
9 done |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
10 fi |
184f37880f90
Darwin needs to run ranlib on any static lib before linking, we do this in this script just before the final linking.
atmos4
parents:
diff
changeset
|
11 exit 0 |