summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-21 06:54:06 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-21 06:54:06 +0000
commit61ee11c1209688b8b853aca49975d9e596fb8f66 (patch)
treec41feb7cbb337bde86c73d42651a58098e231458 /configure
parenta147ec530e1a35db95013e146a4cf28afa94559c (diff)
downloadmpv-61ee11c1209688b8b853aca49975d9e596fb8f66.tar.bz2
mpv-61ee11c1209688b8b853aca49975d9e596fb8f66.tar.xz
Add "uclinux" as an accepted system type in the linux() test.
patch by Mike Frysinger, vapier.adi gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23361 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 18d843064f..9918d00e16 100755
--- a/configure
+++ b/configure
@@ -97,7 +97,7 @@ die () {
issystem() {
test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
}
-linux() { issystem "Linux" ; return "$?" ; }
+linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
sunos() { issystem "SunOS" ; return "$?" ; }
hpux() { issystem "HP-UX" ; return "$?" ; }
irix() { issystem "IRIX" ; return "$?" ; }