blob: cae02609a7317d7549f00597dc9b6644ece096a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-configure,v 1.1 2011/06/03 00:57:47 wiz Exp $
Fix broken test by assuming pkgsrc handles version check for us.
(Problem here is that 1.10 doesn't compare as bigger than 1.4.)
--- configure.orig 2006-11-28 20:34:18.000000000 +0000
+++ configure
@@ -21634,7 +21634,7 @@ fi
{ echo "$as_me:$LINENO: checking for taglib >= 1.4" >&5
echo $ECHO_N "checking for taglib >= 1.4... $ECHO_C" >&6; }
VERSION_CHECK=`expr $TAGLIB_VERSION \>\= 1.4`
- if test "$VERSION_CHECK" = "1" ; then
+ if test "1" = "1" ; then
{ echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
succeeded=yes
|