avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2219] 2011-02-21 Eric B.


From: Eric Weddington
Subject: [avr-libc-commit] [2219] 2011-02-21 Eric B.
Date: Mon, 21 Feb 2011 23:26:19 +0000

Revision: 2219
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2219
Author:   arcanum
Date:     2011-02-21 23:26:18 +0000 (Mon, 21 Feb 2011)
Log Message:
-----------
2011-02-21  Eric B. Weddington  <address@hidden>

        Fix for bug #32103. Thanks to Thomas Rudin for fix.
        * configure.ac: Fix wildcards in searching for cross tools.
        * NEWS: Add item to fixed bugs list.

Ticket Links:
:-----------
    http://savannah.gnu.org/bugs/?32103

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/configure.ac

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2011-02-21 19:43:03 UTC (rev 2218)
+++ trunk/avr-libc/ChangeLog    2011-02-21 23:26:18 UTC (rev 2219)
@@ -1,9 +1,15 @@
 2011-02-21  Eric B. Weddington  <address@hidden>
 
-    Fix for bug #32419.
-    * include/avr/iox192a3.h (*EEPROM_SIZE): Fix values.
-    * NEWS: Add item to fixed bugs list.
+       Fix for bug #32103. Thanks to Thomas Rudin for fix.
+       * configure.ac: Fix wildcards in searching for cross tools.
+       * NEWS: Add item to fixed bugs list.
 
+2011-02-21  Eric B. Weddington  <address@hidden>
+
+       Fix for bug #32419.
+       * include/avr/iox192a3.h (*EEPROM_SIZE): Fix values.
+       * NEWS: Add item to fixed bugs list.
+
 2011-02-16  Joerg Wunsch <address@hidden>
 
        * configure.ac: Bump for post-release.

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2011-02-21 19:43:03 UTC (rev 2218)
+++ trunk/avr-libc/NEWS 2011-02-21 23:26:18 UTC (rev 2219)
@@ -2,6 +2,7 @@
 
 * Bugs fixed:
   
+  [#32103] Support for Target-Triplets
   [#32419] Incorrect EEPROM size in header for ATxmega192A3
 
 * New devices supported:

Modified: trunk/avr-libc/configure.ac
===================================================================
--- trunk/avr-libc/configure.ac 2011-02-21 19:43:03 UTC (rev 2218)
+++ trunk/avr-libc/configure.ac 2011-02-21 23:26:18 UTC (rev 2219)
@@ -145,19 +145,19 @@
 # Make sure that we found the right avr cross-compiler.
 
 case "${CC}" in
-   *avr-gcc*) ;;
+   *avr*gcc*) ;;
    *) AC_MSG_ERROR(Wrong C compiler found; check the PATH!) ;;
 esac
 case "${AS}" in
-   *avr-as*) ;;
+   *avr*as*) ;;
    *) AC_MSG_ERROR(Wrong assembler found; check the PATH!) ;;
 esac
 case "${AR}" in
-   *avr-ar*) ;;
+   *avr*ar*) ;;
    *) AC_MSG_ERROR(Wrong archiver found; check the PATH!) ;;
 esac
 case "${RANLIB}" in
-   *avr-ranlib*) ;;
+   *avr*ranlib*) ;;
    *) AC_MSG_ERROR(Wrong ranlib found; check the PATH!) ;;
 esac
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]