mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 20:39:33 +08:00
2002-11-22 Joe Buehler <jbuehler@hekimian.com>
* configure.in: Change check for libc/include in ${CC} to use an intermediate value so as to work with different shells. * configure: Regenerated. * Makefile.in: Ditto.
This commit is contained in:
parent
40ce7368d9
commit
2955fd7669
@ -1,3 +1,10 @@
|
|||||||
|
2002-11-22 Joe Buehler <jbuehler@hekimian.com>
|
||||||
|
|
||||||
|
* configure.in: Change check for libc/include in ${CC} to
|
||||||
|
use an intermediate value so as to work with different shells.
|
||||||
|
* configure: Regenerated.
|
||||||
|
* Makefile.in: Ditto.
|
||||||
|
|
||||||
2002-11-22 Vijay L. Khuspe <vijayk1@kpit.com>
|
2002-11-22 Vijay L. Khuspe <vijayk1@kpit.com>
|
||||||
|
|
||||||
* libc/sys/h8300hms/read.c: Add support for normal mode
|
* libc/sys/h8300hms/read.c: Add support for normal mode
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
|
# Makefile.in generated automatically by automake 1.4 from Makefile.am
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
|
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
# with or without modifications, as long as this notice is preserved.
|
# with or without modifications, as long as this notice is preserved.
|
||||||
@ -496,7 +496,7 @@ maintainer-clean-recursive:
|
|||||||
dot_seen=no; \
|
dot_seen=no; \
|
||||||
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
|
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||||
rev="$$subdir $$rev"; \
|
rev="$$subdir $$rev"; \
|
||||||
test "$$subdir" != "." || dot_seen=yes; \
|
test "$$subdir" = "." && dot_seen=yes; \
|
||||||
done; \
|
done; \
|
||||||
test "$$dot_seen" = "no" && rev=". $$rev"; \
|
test "$$dot_seen" = "no" && rev=". $$rev"; \
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
target=`echo $@ | sed s/-recursive//`; \
|
||||||
|
3
newlib/configure
vendored
3
newlib/configure
vendored
@ -3071,7 +3071,8 @@ EXTRA_DIRS=
|
|||||||
|
|
||||||
# These get added in the top-level configure.in, except in the case where
|
# These get added in the top-level configure.in, except in the case where
|
||||||
# newlib is being built natively.
|
# newlib is being built natively.
|
||||||
if test -z `echo ${CC} | grep \/libc\/include`; then
|
LIBC_INCLUDE_GREP=`echo ${CC} | grep \/libc\/include`
|
||||||
|
if test -z "${LIBC_INCLUDE_GREP}"; then
|
||||||
CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
|
CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
|
||||||
else
|
else
|
||||||
CC_FOR_NEWLIB="${CC}"
|
CC_FOR_NEWLIB="${CC}"
|
||||||
|
@ -55,7 +55,8 @@ AC_SUBST(EXTRA_DIRS)
|
|||||||
|
|
||||||
# These get added in the top-level configure.in, except in the case where
|
# These get added in the top-level configure.in, except in the case where
|
||||||
# newlib is being built natively.
|
# newlib is being built natively.
|
||||||
if test -z `echo ${CC} | grep \/libc\/include`; then
|
LIBC_INCLUDE_GREP=`echo ${CC} | grep \/libc\/include`
|
||||||
|
if test -z "${LIBC_INCLUDE_GREP}"; then
|
||||||
CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
|
CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
|
||||||
else
|
else
|
||||||
CC_FOR_NEWLIB="${CC}"
|
CC_FOR_NEWLIB="${CC}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user