> Are you building with -j <n>, where n > 1? Then the make process is
> parallel executed and the error could have happened somewhat higher,
> being hidden by other error messages.
no, that's clean ./configure;make

> For any kind of debugging of make errors, please be sure to use\
> make  V=1 -j1
I did. I have also tried this:

 make -n
mkdir -p wrappers
( ./test-conformance -l -m thorough | /bin/grep '^/' ) > unit-tests
chmod +x test-launcher.sh
( echo "/stamp-test-conformance" ; \
   echo "/test-conformance" ; \
   echo "/test-launcher.sh" ; \
   echo "*.o" ; \
   echo "*.xml" ; \
   echo ".gitignore" ; \
   echo "unit-tests" ; \
   echo "/wrappers/" ) > .gitignore
for i in `cat unit-tests`; \
do \
        unit=`basename $i | sed -e s/_/-/g`; \
        echo "  GEN    $unit"; \
        ( echo "#!/bin/sh" ; echo
"/home/goetz/svn/clutter/BUILD/clutter-1.3.14/tests/conform/test-launcher.sh
'$i' \"\...@\"" ) > $unit ; \
        ( echo "#!/bin/sh" ; echo "exec ./test-conformance -p $i
\"\...@\"" ) > wrappers/$unit ; \
        chmod +x $unit; \
        chmod +x wrappers/$unit; \
        echo "/$unit" >> .gitignore; \
done \
&& echo timestamp > stamp-test-conformance
true
make  all-am
make[1]: Entering directory
`/home/goetz/svn/clutter/BUILD/clutter-1.3.14/tests/conform'


$ make V=1
make: *** [stamp-test-conformance] Fehler 1

-- 
AL I:40: Do what thou wilt shall be the whole of the Law.
_______________________________________________
clutter-app-devel-list mailing list
[email protected]
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to