This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] libc/machine/arm/Makefile.in: Fix a typo.


Hi,

Attached is a patch to fix a typo.  Jeff Johnston introduced the line
question with

  http://sourceware.org/ml/newlib-cvs/2006-q2/msg00009.html

Looking at changes to other Makefile.in's, I am guessing that he meant

  lib_a_CFLAGS = $(AM_CFLAGS)

instead.

This patch fixes the build of arm-none-eabi.  OK to apply?

Kazu Hirata

2006-05-07  Kazu Hirata  <kazu@codesourcery.com>

	* libc/machine/arm/Makefile.in: Fix a typo.

Index: newlib/libc/machine/arm/Makefile.in
===================================================================
--- newlib/libc/machine/arm/Makefile.in	1 May 2006 22:01:01 -0000	1.10
+++ newlib/libc/machine/arm/Makefile.in	7 May 2006 11:59:38 -0000
@@ -389,7 +389,7 @@
 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
 	uninstall-am uninstall-info-am
 
-lib_a_CFLAGS-$(AM_CFLAGS)
+lib_a_CFLAGS = $(AM_CFLAGS)
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]