ltp: Add patch to correct failing build
    
    ltp makefile does not interpret correctly the result of git describe
    command and assumes that it is working with a git repo, while in fact
    working with a source code archive.
    Added a patch to corect makefile system.
    Tested using dash as shell.

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>

Index: ltp-20120401/Makefile
===================================================================
--- ltp-20120401.orig/Makefile
+++ ltp-20120401/Makefile
@@ -173,7 +173,7 @@ SRCDIR_INSTALL_TARGETS	:= $(SRCDIR_INSTA
 #
 .PHONY: Version
 Version:
-	if git describe &> /dev/null; then \
+	if git describe > /dev/null 2>&1; then \
 		git describe > "$@"; \
 	else \
 		cp VERSION "$@"; \
