Hi, I didn't know how to submit it but I have it here:

On Fri, Jan 16, 2015 at 6:50 PM, Chris Johns <chr...@rtems.org> wrote:

> On 17/01/2015 8:20 am, Joel Sherrill wrote:
>
>>
>> On 1/16/2015 2:46 PM, Marcos Díaz wrote:
>>
>>> Hi, We were running all tests for the TMS570 and we could see that
>>> these two tests:
>>> /testsuites/libtests/dl01
>>>
>>> /testsuites/libtests/dl02
>>>
>>> failed to build.
>>> We saw in theirs Makefile.am that have this line:
>>> |rm dl01.pre.ralf|
>>> |
>>> |
>>> |And there it fails. We could see that not all the bsp have as a
>>> postlink instruction to generate a .ralf file, so was our case and that's
>>> why it fails.|
>>>
>>
>> I don't know why I haven't seen this before but apparently if you
>> do a second make, it works.
>>
>> I changed the subject. I think it needs to be rm -f in case it isn't
>> there.
>>
>>
> Yes adding a -f should do the trick. I suspect this is due to the
> $(make-exe) macro not creating a .ralf file.
>
> Marcos, would you like to create a patch ?
>
> Thanks
> Chris
>



-- 

______________________________

<http://www.tallertechnologies.com>


Marcos Díaz

Software Engineer


San Lorenzo 47, 3rd Floor, Office 5

Córdoba, Argentina


Phone: +54 351 4217888 / +54 351 4218211/ +54 351 7617452

Skype: markdiaz22
From 6a1dd7686ff96f435c52cd743ab16cc78fbd283f Mon Sep 17 00:00:00 2001
From: Marcos Diaz <marcos.d...@tallertechnologies.com>
Date: Mon, 19 Jan 2015 09:53:51 -0300
Subject: [PATCH] Fixed dl01 and dl02 makefiles

---
 testsuites/libtests/dl01/Makefile.am | 2 +-
 testsuites/libtests/dl02/Makefile.am | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testsuites/libtests/dl01/Makefile.am b/testsuites/libtests/dl01/Makefile.am
index 0ab211c..d7c9a0d 100644
--- a/testsuites/libtests/dl01/Makefile.am
+++ b/testsuites/libtests/dl01/Makefile.am
@@ -32,7 +32,7 @@ CLEANFILES += dl-tar.h
 dl01.pre$(EXEEXT): $(dl01_OBJECTS) $(dl01_DEPENDENCIES)
 	@rm -f dl01.pre$(EXEEXT)
 	$(make-exe)
-	rm dl01.pre.ralf
+	rm -f dl01.pre.ralf
 
 dl01.pre: dl01.pre$(EXEEXT)
 	mv $< $@
diff --git a/testsuites/libtests/dl02/Makefile.am b/testsuites/libtests/dl02/Makefile.am
index bcbcda2..39a8efe 100644
--- a/testsuites/libtests/dl02/Makefile.am
+++ b/testsuites/libtests/dl02/Makefile.am
@@ -34,7 +34,7 @@ CLEANFILES += dl-tar.h
 dl02.pre$(EXEEXT): $(dl02_OBJECTS) $(dl02_DEPENDENCIES)
 	@rm -f dl02.pre$(EXEEXT)
 	$(make-exe)
-	rm dl02.pre.ralf
+	rm -f dl02.pre.ralf
 
 dl02.pre: dl02.pre$(EXEEXT)
 	mv $< $@
-- 
1.9.1

_______________________________________________
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Reply via email to