extra/cpufrequtils: disable 2.4 kernel support

saves 4k
This commit is contained in:
Natanael Copa 2009-05-21 19:18:40 +00:00
parent 037d588f15
commit 5cd9a66ef8

View File

@ -23,8 +23,11 @@ build ()
done
# distcc and ccache makes libtool confused about the tag.
# we save 4k by disabling the 2.4 kernel support (PROC=false)
make -j1 LIBTOOL_OPT="--tag=CC --silent" \
NLS=false || return 1
NLS=false \
PROC=false \
|| return 1
make mandir=/usr/share/man \
NLS=false \
DESTDIR="$pkgdir" \