diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-12-10 10:26:33 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-07 23:33:05 +0000 |
commit | b53e46bece1c4976ba146d9abf41a8a54c584300 (patch) | |
tree | 14c795361b7409a1dd8011759003dc6a0b4ce69f /meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch | |
parent | 0509f3b6f880b516dfbe053b13d417f724509b99 (diff) | |
download | openembedded-core-b53e46bece1c4976ba146d9abf41a8a54c584300.tar.gz openembedded-core-b53e46bece1c4976ba146d9abf41a8a54c584300.tar.bz2 openembedded-core-b53e46bece1c4976ba146d9abf41a8a54c584300.zip |
syslinux: Update to 6.0.3
Removed patches that are now committed upstream, rebase parallel make
patch and add a new patch to remove a script that was calling git during
the clean process.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch')
-rw-r--r-- | meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch b/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch deleted file mode 100644 index 6b695791cd..0000000000 --- a/meta/recipes-devtools/syslinux/files/syslinux-fix-parallel-building-issue.patch +++ /dev/null @@ -1,38 +0,0 @@ -syslinux-native: fix parallel building issue - -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@windriver.com> ---- - com32/Makefile | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/com32/Makefile b/com32/Makefile -index 7ea1b01..9a1721b 100644 ---- a/com32/Makefile -+++ b/com32/Makefile -@@ -20,3 +20,4 @@ modules: lib libutil gpllib - rosh: lib libutil - samples: libutil elflink/ldlinux - sysdump: libupload gpllib -+gpllib: lib --- -1.7.9.5 - |