~ubuntu-branches/ubuntu/trusty/linuxlogo/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-06-20 09:19:00 UTC
  • mfrom: (4.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080620091900-4xzuv7c7ntxvs7wt
Tags: 5.03-4
* Adding patch to fix FTBFS on s390x.
* Updating to standards 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh /usr/share/dpatch/dpatch-run
 
2
## 01-dash.dpatch by Daniel Baumann <daniel@debian.org>
 
3
##
 
4
## DP: Avoiding broken argument handling and thus fix FTBFS with dash
 
5
## DP: (Closes: #483851).
 
6
 
 
7
@DPATCH@
 
8
 
 
9
diff -Naurp linuxlogo-5.03.orig/configure linuxlogo-5.03/configure
 
10
--- linuxlogo-5.03.orig/configure       2008-05-31 17:18:22.000000000 +0000
 
11
+++ linuxlogo-5.03/configure    2008-05-31 17:19:44.000000000 +0000
 
12
@@ -14,16 +14,16 @@ usage() {
 
13
    exit 1
 
14
 }
 
15
 
 
16
-while [ $# -gt 0  ]
 
17
+#while [ $# -gt 0  ]
 
18
 
 
19
-do
 
20
-   case "${1%=*}" in
 
21
-      -h|--help) usage;;
 
22
-      --prefix) PREFIX="${1#*=}"; shift;;
 
23
-      *) break;; # terminate while loop
 
24
-   esac
 
25
-   shift
 
26
-done
 
27
+#do
 
28
+#   case "${1%=*}" in
 
29
+#      -h|--help) usage;;
 
30
+#      --prefix) PREFIX="${1#*=}"; shift;;
 
31
+#      *) break;; # terminate while loop
 
32
+#   esac
 
33
+#   shift
 
34
+#done
 
35
                                       
 
36
 
 
37
 ARCH=`uname -m`