diff options
author | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-01-12 10:01:04 +0000 |
---|---|---|
committer | attila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-01-12 10:01:04 +0000 |
commit | 47e168ce1980ebe6e1f94e16bc7fda7b9f006a5e (patch) | |
tree | 8b883c6388b6f8d698c0e9c9068552c200441603 /configure | |
parent | e71314fcc9b9e885c1a6c84902d2719457467c7b (diff) |
sun grep doesn't like binary files, thus the compiled file
has to be passed trough strings first.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14470 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6197,7 +6197,7 @@ int main(){ } EOF if cc_check ; then - if test `grep -l MPlayerBigEndian $TMPO` ; then + if test `strings $TMPO | grep -l MPlayerBigEndian` ; then _big_endian=yes else _big_endian=no |