> We also needed the following here to fix the build break else would have
> introduced:
> 
>         then echo "$${FOUND}" ;fi)      
> 
> Thanks. I have taken care.

Sorry, I took a mistake. Could you apply following patch?

Signed-off-by: Masatake YAMATO <[EMAIL PROTECTED]>


diff --git a/testcases/kernel/syscalls/utils/cond.mk 
b/testcases/kernel/syscalls/utils/cond.mk
index f8bb58e..75e97cf 100644
--- a/testcases/kernel/syscalls/utils/cond.mk
+++ b/testcases/kernel/syscalls/utils/cond.mk
@@ -77,7 +77,8 @@ check_header = $(shell                                        
                        \
        if [ "x$(2)" = "x" ]; then FOUND=yes; else FOUND="$(2)"; fi;            
\
        if [ "x$(3)" = "x" ]; then NOTFOUND=no; else NOTFOUND="$(3)"; fi;       
\
        if echo "\#include <$(1)>" | $(CPP) $(COND_CFLAGS) - > /dev/null 2>&1 ; 
\
-       then echo "$${FOUND}" ;fi)      
+       then echo "$${FOUND}" ;                                                 
\
+        else echo "$${NOTFOUND}" ; fi)
 # TODO: CPPFLAGS should be used here. 
 
 


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to