Browse Source

ok, take the bigger hammer to make sure Bash does not pick up libintl & co

master
parent
commit
a5bdaf9f27
  1. 11
      bash/bash.spec

11
bash/bash.spec

@ -37,7 +37,7 @@ Distribution: OpenPKG [CORE]
Group: Shell
License: GPL
Version: %{V_real}
Release: 20021028
Release: 20021127
# list of sources
Source0: ftp://ftp.cwru.edu/pub/bash/bash-%{V_real}.tar.gz
@ -70,9 +70,16 @@ AutoReqProv: no
%patch3 -p0
%build
( echo "ac_cv_header_wchar_h=no"
( # force disabled wide-character support
echo "ac_cv_header_wchar_h=no"
echo "ac_cv_header_wctype_h=no"
echo "ac_cv_func_mbsrtowcs=no"
# force disabled internationalization support
echo "ac_cv_header_libintl_h=no"
echo "ac_cv_func_gettext=no"
echo "ac_cv_func_textdomain=no"
echo "ac_cv_func_bindtextdomain=no"
echo "ac_cv_lib_intl_bindtextdomain=no"
) >config.cache
CC="%{l_cc}" \
CFLAGS="%{l_cflags -O}" \

Loading…
Cancel
Save