summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-20 21:14:14 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-20 21:14:14 +0000
commiteca0abbc21a015ba8044bde343e8d49439181e30 (patch)
treecd0efd47270f0c8d5dd3742f30101faa25660d87 /configure
parent2abbb9c863ee1127c37dd344e1219b2eff551c4c (diff)
downloadmpv-eca0abbc21a015ba8044bde343e8d49439181e30.tar.bz2
mpv-eca0abbc21a015ba8044bde343e8d49439181e30.tar.xz
Move ranlib setting to a more sensible place.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21972 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure b/configure
index 332d3c16f4..19dd58498d 100755
--- a/configure
+++ b/configure
@@ -678,6 +678,13 @@ if aix ; then
_ld_extra="$_ld_extra -lC"
fi
+# If IRIX we must use ar instead of ranlib (not present on IRIX systems)
+if irix ; then
+ _ranlib='ar -r'
+elif linux ; then
+ _ranlib='true'
+fi
+
# Check how to call 'head' and 'tail'. Newer versions spit out warnings
# if used as 'head -1' instead of 'head -n 1', but older versions don't
# know about '-n'.
@@ -2525,13 +2532,6 @@ die "no awk"
fi
fi
-# If IRIX we must use ar instead of ranlib (not present on IRIX systems)
-if irix ; then
- _ranlib='ar -r'
-elif linux ; then
- _ranlib='true'
-fi
-
######################
# MAIN TESTS GO HERE #
######################