libraries/libgnomeui: Fix source files encoding.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Matteo Bernardini 2018-02-06 19:50:46 +01:00 committed by Robby Workman
parent f08a0bc294
commit b71ce65154

View file

@ -69,6 +69,12 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# https://github.com/voidlinux/void-packages/commit/f16a2d557e84f5d7f5ece8b2022aab4fd17aa0ce
for f in $(find . -type f -exec file "{}" \; | grep "C source" | cut -d ':' -f1); do
echo "${f}"
recode ISO-8859-1..UTF-8 "${f}"
done
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \