From 26ad070cd68c280d31e2c5ccf92bc970d2c80fb5 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 14 Oct 2007 21:02:53 +0000 Subject: [PATCH] fix in switch script generation --- lib/pdf/inject-xpdf.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/pdf/inject-xpdf.pl b/lib/pdf/inject-xpdf.pl index ba6cea6..82d170b 100755 --- a/lib/pdf/inject-xpdf.pl +++ b/lib/pdf/inject-xpdf.pl @@ -15,7 +15,7 @@ system("tar -zxvf ../../$filename") and die; system("find -type f -exec mv {} .. \\;") and die; chdir(".."); system("find -type d -exec rmdir {} \\; 2> /dev/null"); -system("patch < ../xpdf-changes.patch") and die; +system("patch < ../xpdf-changes.patch"); chdir(".."); system("rm -f xpdf"); system("ln -s $directory xpdf"); @@ -29,8 +29,9 @@ VERSION=\$1 PS3="choose> " if test "x\$VERSION" = "x";then - select V in stable latest;do VERSION="$V";break;done + select V in stable latest;do VERSION="\$V";break;done fi +case $VERSION if test "x\$VERSION" = "xstable";then echo "Switching to stable version" -- 1.7.10.4