From 28a663b3b967719b0b4df2998c6fafd98c097806 Mon Sep 17 00:00:00 2001 From: Igor Mitsyanko Date: Wed, 25 Jul 2012 15:43:56 +0400 Subject: [PATCH] Makefile.target: copy openGLES libraries only if they're old We want to replace GLES and EGL libraries used by qemu executable with libraries pointed by QEMU configure script only if libraries were updated, this should prevent unnesassary copy operation. Signed-off-by: Igor Mitsyanko --- Makefile.target | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.target b/Makefile.target index d462dcf..dabc0aa 100755 --- a/Makefile.target +++ b/Makefile.target @@ -437,7 +437,7 @@ $(GLESLIBS_LINK_LIST): GLESLIBS_RUNTIME_LIST:=$(addprefix ./,$(notdir $(GLESLIBS_LINK_LIST))) $(GLESLIBS_RUNTIME_LIST): $(GLESLIBS_LINK_LIST) - @cp -dp -t ./ $(GLESLIBS_LINK_LIST) + @cp -dpu -t ./ $(GLESLIBS_LINK_LIST) $(QEMU_PROG): $(GLESLIBS_RUNTIME_LIST) -- 2.7.4