diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-01-07 18:19:31 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-01-07 18:19:31 +0000 |
commit | 991f750018581ba2bd6e29f3eb47ba31372d1590 (patch) | |
tree | f8a0e2ab9750005d8349219b800d1e322e981491 | |
parent | 28703738e98ec2fc393a8f0741d81599c6f9940f (diff) | |
download | upstream-991f750018581ba2bd6e29f3eb47ba31372d1590.tar.gz upstream-991f750018581ba2bd6e29f3eb47ba31372d1590.tar.bz2 upstream-991f750018581ba2bd6e29f3eb47ba31372d1590.zip |
ncurses: fix typo on INSTALL_LIBSTDCPP configuration symbol
Thanks to kyak for spotting this
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35047 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/libs/ncurses/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/ncurses/Makefile b/package/libs/ncurses/Makefile index 465b60cae1..befc8f0fbb 100644 --- a/package/libs/ncurses/Makefile +++ b/package/libs/ncurses/Makefile @@ -67,7 +67,7 @@ CONFIGURE_ARGS += \ --with-terminfo-dirs=/usr/share/terminfo \ --with-default-terminfo-dir=/usr/share/terminfo -ifneq ($(INSTALL_LIBSTDCPP),y) +ifneq ($(CONFIG_INSTALL_LIBSTDCPP),y) CONFIGURE_ARGS += \ --without-cxx-binding endif |