~ubuntu-branches/ubuntu/utopic/linuxlogo/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/patches/01-dash.patch

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-07-14 12:40:04 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090714124004-oacwhjx94isy0zaz
Tags: 5.06-1
* Merging upstream version 5.06:
  - Fixes problem with logo naming (Closes: #510813).
* Readding default logo in linux_logo.conf.
* Removing dash.patch, not required anymore.
* Updating logo list in linux_logo.conf.
* Renaming directory for local debian additions to more common name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Author: Daniel Baumann <daniel@debian.org>
2
 
Description: Avoiding broken argument handling and thus fix FTBFS with dash (Closes: #483851).
3
 
 
4
 
diff -Naurp linuxlogo.orig/configure linuxlogo/configure
5
 
--- linuxlogo.orig/configure    2008-12-26 09:02:19.000000000 +0000
6
 
+++ linuxlogo/configure 2008-12-29 21:35:29.000000000 +0000
7
 
@@ -14,18 +14,6 @@ usage() {
8
 
    exit 1
9
 
 }
10
 
 
11
 
-while [ $# -gt 0  ]
12
 
-
13
 
-do
14
 
-   case "${1%=*}" in
15
 
-      -h|--help) usage;;
16
 
-      --prefix) PREFIX="${1#*=}"; shift;;
17
 
-      *) break;; # terminate while loop
18
 
-   esac
19
 
-   shift
20
 
-done
21
 
-                                      
22
 
-
23
 
 ARCH=`uname -m`
24
 
 OS=`uname`
25
 
 INSTALL=`which install`