Dash:
[t2-trunk.git] / package / base / musl / parse-config
blobfcfc6c29dc6ff97ad3c9900826a1c307056c5c18
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/musl/parse-config
3 # Copyright (C) 2004 - 2021 The T2 SDE Project
4
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2.
10 # --- T2-COPYRIGHT-NOTE-END ---
12 if [ "$SDECFG_LIBC" == "musl" ]; then
13         [ "$pkg" != "musl" ] && var_append flist''del '|' "usr/lib[^/]*/charset.alias"
15         # the most typical fix is to config.sub
16         #
17         musl_fix_configsub() {
18             for x; do
19                 echo "musl_fix_configsub: adding musl_arch_target support to $x"
20                 cp -f $x $x.orig
21                 sed -e 's,\([-]\?linux\)-gnu\*,\1-gnu\* | \1-musl\*,g' $x.orig > $x
22                 diff -u $x.orig $x || true
23             done
24         }
25         musl_auto_fix_configsub() {
26                 grep /config.sub $builddir/untar.txt |
27                 while read f; do
28                         if ! grep -q '\-musl' $builddir/$f; then
29                                 musl_fix_configsub $builddir/$f
30                         fi
31                 done
32         }
33         hook_add postpatch 5 'musl_auto_fix_configsub'
35         case "$pkg" in
36         coreutils)      var_append extraconfopt ' ' '--with-included-regex' ;;
37         esac
39         # patching
40         if [ "`echo $confdir/*.patch.musl`" != "$confdir/*.patch.musl" ]; then
41                 echo_status "musl: appending patches"
42                 var_append patchfiles ' ' "`echo $confdir/*.patch.musl`"
43         fi