~ubuntu-branches/ubuntu/oneiric/ocsigen/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/0001-Fix-typo-regarding-stubdir-in-configure-script.patch

  • Committer: Bazaar Package Importer
  • Author(s): Stephane Glondu
  • Date: 2009-07-02 10:02:08 UTC
  • mfrom: (1.1.9 upstream) (4.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090702100208-n158b1sqwzn0asil
Tags: 1.2.0-2
Fix build on non-native architectures

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Stephane Glondu <steph@glondu.net>
 
2
Date: Fri, 8 May 2009 01:53:22 +0200
 
3
Subject: [PATCH] Fix typo regarding --stubdir in configure script
 
4
 
 
5
Applied upstream.
 
6
---
 
7
 configure |    2 +-
 
8
 1 files changed, 1 insertions(+), 1 deletions(-)
 
9
 
 
10
diff --git a/configure b/configure
 
11
index 03937d5..0819b30 100755
 
12
--- a/configure
 
13
+++ b/configure
 
14
@@ -375,7 +375,7 @@ while [ "$#" -gt 0 ]; do
 
15
                         shift
 
16
                         ;;
 
17
                 --stubdir)
 
18
-                        libdir="$2"
 
19
+                        stubdir="$2"
 
20
                         shift
 
21
                         shift
 
22
                         ;;
 
23
--