diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-12 01:58:15 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-12 01:58:15 +0000 |
commit | c943a0297a1b11ed4b99c6741881a0f5e579052c (patch) | |
tree | cac4e26ca381e5e3bf230bfae1ba57d276758cef /content | |
parent | 2bffdf83519af38bd0b8c80e4cf5ab1d2d6bca21 (diff) |
zsh-4.1.1.oe:
BUGFIX: zsh compiles.
ncurses-5.3.oe:
BUGFIX: ncurses compiles.
BKrev: 3f612837l9qhBrBfbdQzwFH-WIEeiw
Diffstat (limited to 'content')
-rw-r--r-- | content/ncurses-5.3.oe | 9 | ||||
-rw-r--r-- | content/zsh-4.1.1.oe | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/content/ncurses-5.3.oe b/content/ncurses-5.3.oe index 873d13b5b9..5fc7085c77 100644 --- a/content/ncurses-5.3.oe +++ b/content/ncurses-5.3.oe @@ -18,10 +18,17 @@ EXTRA_OECONF=--with-shared \ --without-cxx-binding \ --with-terminfo-dirs=/etc/terminfo:/usr/share/terminfo \ --enable-overwrite -export BUILD_CC:=${BUILD_CC} +EXTRA_OEMAKE = +export BUILD_CC := ${BUILD_CC} export BUILD_CCFLAGS=-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS} export BUILD_LDFLAGS= +do_compile () { + set -e + oe_runconf + oe_runmake BUILD_LDFLAGS="" 'BUILD_CCFLAGS=${BUILD_CCFLAGS}' +} + do_stage () { install -m 0755 lib/lib*.so.* ${STAGING_LIBDIR}/ cp -R include/* ${STAGING_DIR}/target/include/ diff --git a/content/zsh-4.1.1.oe b/content/zsh-4.1.1.oe index 245de63015..5778214907 100644 --- a/content/zsh-4.1.1.oe +++ b/content/zsh-4.1.1.oe @@ -10,6 +10,7 @@ S="${WORKDIR}/${P}" EXTRA_OECONF = "--with-curses-terminfo" #EXTRA_OECONF = "--with-curses-terminfo --enable-libs='-lncurses'" +EXTRA_OEMAKE = do_install () { set -e |