From 34687dc030c117b26cf7d26fe7cfc6d2c77396c4 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Thu, 12 Apr 2012 23:08:32 +0300 Subject: [PATCH] config/options: case insensitive PVR=yes this fixes #271 --- config/options | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/options b/config/options index 7bd577b794..ba19416cfe 100644 --- a/config/options +++ b/config/options @@ -6,6 +6,9 @@ else PROJECT="$PROJECT" fi +# you are a noob: 'Yes' is not 'yes' :) +PVR=`echo $PVR | tr A-Z a-z` + # determines TARGET_ARCH, if not forced by user (i386 / x86_64 / arm) # default is i386 if [ -z "$ARCH" ]; then