diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /bash | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'bash')
-rw-r--r-- | bash/bash_2.05b.oe | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/bash/bash_2.05b.oe b/bash/bash_2.05b.oe index 3c1b0a8ca4..637f5b3087 100644 --- a/bash/bash_2.05b.oe +++ b/bash/bash_2.05b.oe @@ -1,22 +1,22 @@ -DEPENDS = virtual/libc ncurses -RDEPENDS = libc6 libncurses5 +DEPENDS = "virtual/libc ncurses" +RDEPENDS = "libc6 libncurses5" -SRC_URI = ${GNU_MIRROR}/bash/bash-2.05b.tar.gz \ - file://${FILESDIR}/make.patch;patch=1 \ - file://${FILESDIR}/configure.patch;patch=1 +SRC_URI = "${GNU_MIRROR}/bash/bash-2.05b.tar.gz \ + file://${FILESDIR}/make.patch;patch=1 \ + file://${FILESDIR}/configure.patch;patch=1" inherit autotools -bindir=/bin -sbindir=/sbin +bindir = "/bin" +sbindir = "/sbin" -EXTRA_OECONF = --with-curses +EXTRA_OECONF = "--with-curses" BUILD_CPPFLAGS_append = " -I${S} -I${S}/include" BUILD_CFLAGS_append = " -I${S} -I${S}/include" -export CFLAGS_FOR_BUILD=${BUILD_CFLAGS} -export CPPFLAGS_FOR_BUILD=${BUILD_CPPFLAGS} -export LDFLAGS_FOR_BUILD=${BUILD_LDFLAGS} -export CC_FOR_BUILD=${BUILD_CC} +export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" +export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" +export LDFLAGS_FOR_BUILD = "${BUILD_LDFLAGS}" +export CC_FOR_BUILD = "${BUILD_CC}" do_configure_prepend () { if [ ! -e acinclude.m4 ]; then mv aclocal.m4 acinclude.m4 |