Commit 68a76082 authored by aoliva's avatar aoliva
Browse files

* Makefile.in (NM_FOR_TARGET): Look for ./nm, then

../binutils/nm-new instead of ../binutils/nm.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41924 138bc75d-0d04-0410-961f-82ee72b054a4
parent 89a986cd
Wed May 9 10:36:18 2001 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (NM_FOR_TARGET): Look for ./nm, then
../binutils/nm-new instead of ../binutils/nm.
Wed May 9 12:15:46 CEST 2001 Jan Hubicka <jh@suse.cz>
* i386.md (movdi splitter): Fix the splitting condition
......
......@@ -230,8 +230,10 @@ RANLIB_TEST_FOR_TARGET = \
|| ( [ "$(host_canonical)" = "$(target)" ] \
&& [ -f /usr/bin/ranlib -o -f /bin/ranlib ] )
NM_FOR_TARGET = ` \
if [ -f $(objdir)/../binutils/nm ] ; then \
echo $(objdir)/../binutils/nm ; \
if [ -f ./nm ] ; then \
echo ./nm ; \
elif [ -f $(objdir)/../binutils/nm-new ] ; then \
echo $(objdir)/../binutils/nm-new ; \
else \
if [ "$(host_canonical)" = "$(target)" ] ; then \
echo nm; \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment