Skip to content

Commit

Permalink
build: do not delete package locale data if GLIBC_LOCALE is set to yes
Browse files Browse the repository at this point in the history
  • Loading branch information
hsteinhaus committed Nov 17, 2015
1 parent 18bd8d7 commit 6145e70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,9 @@ if [ ! -f $STAMP ]; then
rm -rf $i/share/doc
rm -rf $i/share/gtk-doc
rm -rf $i/share/info
rm -rf $i/share/locale
if [ ! "$GLIBC_LOCALES" = yes ]; then
rm -rf $i/share/locale
fi
rm -rf $i/share/man
rm -rf $i/share/pkgconfig
find $i -name "*.la" -exec rm -f "{}" ";" 2>/dev/null || true
Expand Down

0 comments on commit 6145e70

Please sign in to comment.