Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
From: Baruch Siach <baruch@tkos.co.il>
|
||||
Date: Thu, 3 Mar 2016 23:14:39 +0200
|
||||
Subject: [PATCH] configure: use user set pcre-config
|
||||
|
||||
Setting a non default configuration script location is common practice when
|
||||
cross compiling, since the target library might need different flags. zsh
|
||||
configure scripts allows the user to set pcre-config location but doesn't
|
||||
actually use it. Fix this.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: sent upstream
|
||||
(http://www.zsh.org/mla/workers/2016/msg00619.html)
|
||||
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index c3bd713c126a..9947b16066b6 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -925,7 +925,7 @@ fi
|
||||
if test x$enable_pcre = xyes; then
|
||||
dnl pcre-config should probably be employed here
|
||||
dnl AC_SEARCH_LIBS(pcre_compile, pcre)
|
||||
- LIBS="`pcre-config --libs` $LIBS"
|
||||
+ LIBS="`$ac_cv_prog_PCRECONF --libs` $LIBS"
|
||||
fi
|
||||
|
||||
dnl ---------------------
|
||||
--
|
||||
2.7.0
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
config BR2_PACKAGE_ZSH
|
||||
bool "zsh"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
zsh is a shell designed for interactive use, although it is also
|
||||
|
||||
@@ -9,6 +9,8 @@ ZSH_SITE = http://www.zsh.org/pub
|
||||
ZSH_SOURCE = zsh-$(ZSH_VERSION).tar.xz
|
||||
ZSH_DEPENDENCIES = ncurses
|
||||
ZSH_CONF_OPTS = --bindir=/bin
|
||||
# Patching configure.ac
|
||||
ZSH_AUTORECONF = YES
|
||||
ZSH_LICENSE = MIT-like
|
||||
ZSH_LICENSE_FILES = LICENCE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user