aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Lu <Chong.Lu at windriver.com>2014-12-17 14:06:18 -0500
committerGene Cumm <gene.cumm@gmail.com>2015-01-05 20:43:13 -0500
commite5ff94337477ed6fba4cb94ecc2c304f2c2488a8 (patch)
tree4ba3539a788a486170c1f5cf58a0fa3273a055bc
parent80e91530c1a9b73d7768c3a5234684d532661b87 (diff)
downloadsyslinux-e5ff94337477ed6fba4cb94ecc2c304f2c2488a8.tar.gz
syslinux-e5ff94337477ed6fba4cb94ecc2c304f2c2488a8.tar.xz
syslinux-e5ff94337477ed6fba4cb94ecc2c304f2c2488a8.zip
gpllib: fix parallel building issue
From: Chong Lu <Chong.Lu at windriver.com> There might be an error when parallel build: [snip] cp: cannot create directory `tmp/sysroots/x86_64-linux/usr/share/ syslinux/com32/include/gplinclude': No such file or directory make[4]: *** [install] Error 1 make[3]: *** [gpllib] Error 2 [snip] This is a potential issue. In ${S}/com32/gpllib/Makefile file, install target wants to copy $(SRC)/../gplinclude to $(INSTALLROOT)$(COM32DIR)/include/ directory, but in ${S}/com32/lib/Makefile file, the install target will remove $(INSTALLROOT)$(COM32DIR)/include directory. We need to do com32/lib first. The patch make com32/gpllib depends on com32/lib to fix this issue. Upstream-Status: Pending Signed-off-by: Chong Lu <Chong.Lu at windriver.com> Signed-off-by: Robert Yang <liezhi.yang at windriver.com> Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
-rw-r--r--com32/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/Makefile b/com32/Makefile
index abf57490..6dadd9b0 100644
--- a/com32/Makefile
+++ b/com32/Makefile
@@ -22,3 +22,4 @@ samples: libutil elflink/ldlinux
sysdump: lib libutil libupload gpllib
lua/src: cmenu modules
libupload: lib
+gpllib: lib