~ubuntu-branches/ubuntu/wily/tcc/wily-proposed

« back to all changes in this revision

Viewing changes to debian/patches/0002-Evaluate-configure-arguments.patch

  • Committer: Package Import Robot
  • Author(s): Matteo Cypriani
  • Date: 2014-09-05 23:35:30 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20140905233530-uxjxijb8lyrbljp0
Tags: 0.9.27~git20140801.14745bd-1
* New upstream snapshot.
* Upload to unstable.
* Add Matteo Cypriani as an Uploader.
* Bump Standards-Version to 3.9.5.
* Improve watch file (thanks Bart Martens).
* Switch from texi2html to makeinfo.
* Override LDFLAGS for the tests.
* Disable floating-point test for armel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From 3f094b4d2650e6cd576869bf8a5b285fc72787bf Mon Sep 17 00:00:00 2001
2
 
From: Thomas Preud'homme <robotux@celest.fr>
3
 
Date: Tue, 12 Jun 2012 20:48:01 +0200
4
 
Subject: Evaluate configure arguments
5
 
 
6
 
Evaluate configure arguments to reproduce autotools behavior. Autotools
7
 
actually only expands a few variable and do it at make time but it makes
8
 
the change much simpler.
9
 
 
10
 
Origin: vendor
11
 
Forwarded: yes
12
 
Last-Update: 2012-06-12
13
 
Applied-Upstream: commit: 2e7a1af5d5d659c94b53ba2d06b84875942eb6fe
14
 
---
15
 
 configure |    1 +
16
 
 1 file changed, 1 insertion(+)
17
 
 
18
 
diff --git a/configure b/configure
19
 
index f152cf9..1efe9cc 100755
20
 
--- a/configure
21
 
+++ b/configure
22
 
@@ -103,6 +103,7 @@ if test -z "$source_path" -o "$source_path" = "." ; then
23
 
 fi
24
 
 
25
 
 for opt do
26
 
+  eval opt=$opt
27
 
   case "$opt" in
28
 
   --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
29
 
   ;;