mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
libraries/libgnomeui: Fix source files encoding.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
f08a0bc294
commit
b71ce65154
1 changed files with 6 additions and 0 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue