mklibgcc.in (building libgcc1): Find libgcc1.c in $(srcdir), not in the current directory.

* mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
	$(srcdir), not in the current directory.

From-SVN: r33954
This commit is contained in:
Philippe De Muyter 2000-05-17 12:03:04 +02:00 committed by Philippe De Muyter
parent 078721e1a2
commit 6f6ceed067
2 changed files with 7 additions and 2 deletions

View File

@ -29,6 +29,11 @@ Wed May 17 17:27:44 2000 Andrew Cagney <cagney@b1.cygnus.com>
-Wunused-function, -Wunused-function, -Wunused-label,
-Wunused-parameter, -Wunused-variable and -Wunused-value options.
Wed May 17 10:28:12 2000 Philippe De Muyter <phdm@macqel.be>
* mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
$(srcdir), not in the current directory.
2000-05-16 Richard Henderson <rth@cygnus.com>
* config/ia64/crtbegin.asm (__dso_handle): Mark hidden if the

View File

@ -106,9 +106,9 @@ case X"$LIBGCC1" in
echo $out: $libgcc1_c_dep
if [ -z "@NO_MINUS_C_MINUS_O@" ]; then
echo " $oldcc_compile" $flags -c libgcc1.c -o $out
echo " $oldcc_compile" $flags -c '$(srcdir)/libgcc1.c' -o $out
else
echo " $oldcc_compile" $flags -c libgcc1.c
echo " $oldcc_compile" $flags -c '$(srcdir)/libgcc1.c'
echo " mv libgcc1${objext} $out"
fi