~ubuntu-branches/ubuntu/raring/gcc-4.7/raring

« back to all changes in this revision

Viewing changes to debian/patches/ada-driver-check.diff

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-17 23:19:46 UTC
  • Revision ID: package-import@ubuntu.com-20111217231946-n668coanjbjgqxq7
Tags: 4.7-20111217-1
* GCC-4.7 snapshot build.
  - Including the GFDL documentation; will stay in experimental
    until the 4.7.0 release sometime next year.
* Update patches for the trunk.
* Update symbols files.
* Build libitm packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# DP: Simplify Ada driver check (we always build using the required
 
2
# DP: Ada version. Needed for warnings on alpha.
 
3
 
 
4
--- a/src/config/acx.m4~        2007-09-02 19:24:08.865326043 +0200
 
5
+++ b/src/config/acx.m4 2007-09-02 19:28:53.719623005 +0200
 
6
@@ -380,7 +380,7 @@
 
7
 # Other compilers, like HP Tru64 UNIX cc, exit successfully when
 
8
 # given a .adb file, but produce no object file.  So we must check
 
9
 # if an object file was really produced to guard against this.
 
10
-errors=`(${CC} $1[]m4_ifval([$1], [ ])-c conftest.adb) 2>&1 || echo failure`
 
11
+errors=`(${CC} $1[]m4_ifval([$1], [ ])-c conftest.adb) 2>/dev/null || echo failure`
 
12
 if test x"$errors" = x && test -f conftest.$ac_objext; then
 
13
   acx_cv_cc_gcc_supports_ada=yes
 
14
 fi
 
15
 
 
16
--- a/src/configure~    2007-09-02 16:50:31.206279000 +0200
 
17
+++ b/src/configure     2007-09-02 19:28:58.259691491 +0200
 
18
@@ -4448,7 +4448,7 @@
 
19
 # Other compilers, like HP Tru64 UNIX cc, exit successfully when
 
20
 # given a .adb file, but produce no object file.  So we must check
 
21
 # if an object file was really produced to guard against this.
 
22
-errors=`(${CC} -c conftest.adb) 2>&1 || echo failure`
 
23
+errors=`(${CC} -c conftest.adb) 2>/dev/null || echo failure`
 
24
 if test x"$errors" = x && test -f conftest.$ac_objext; then
 
25
   acx_cv_cc_gcc_supports_ada=yes
 
26
 fi