diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-09-25 16:46:39 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-09-25 16:46:39 +0000 |
commit | ac8b90aec199f44694fd539b92a6baf531d7b654 (patch) | |
tree | 2e0d1435567ab34704f8b23f9a12c71102ed92ea /configure | |
parent | 3f9cacf5d5a198b2ff96696ce7055dd87b9a522a (diff) |
Do not override host_arch in x86 vs. x86_64 detection if it was forced via --target.
Patch by Andrew Wason [rectalogic rectalogic com]
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29717 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1520,7 +1520,7 @@ echo configuration: $_configuration > "$TMPLOG" echo >> "$TMPLOG" -if x86 ; then +if test -z "$_target" && x86 ; then cat > $TMPC << EOF int main(void) { int test[sizeof(char *)-7]; |