mirror of
https://git.sr.ht/~nabijaczleweli/tzpfms
synced 2025-04-15 09:40:32 +03:00
sort | uniq -> LC_ALL=C sort -u
This commit is contained in:
parent
29c58cfe9b
commit
005ee41545
@ -22,12 +22,12 @@ tasks:
|
||||
- build-gcc: |
|
||||
cd tzpfms
|
||||
make
|
||||
find out/ -maxdepth 1 -type f -exec readelf -d {} + | tee /dev/stderr | grep Shared | sort | uniq
|
||||
find out/ -maxdepth 1 -type f -exec readelf -d {} + | tee /dev/stderr | grep Shared | LC_ALL=C sort -u
|
||||
make clean
|
||||
- build-clang: |
|
||||
cd tzpfms
|
||||
CC=clang CXX=clang++ make
|
||||
find out/ -maxdepth 1 -type f -exec readelf -d {} + | tee /dev/stderr | grep Shared | sort | uniq
|
||||
find out/ -maxdepth 1 -type f -exec readelf -d {} + | tee /dev/stderr | grep Shared | LC_ALL=C sort -u
|
||||
- manpages: |
|
||||
git -C tzpfms/ worktree add ../tzpfms-man man
|
||||
cd tzpfms-man
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
if [ -e /etc/nsswitch.conf ]; then
|
||||
INST_CFG /etc/nsswitch.conf
|
||||
databases="$(awk '/^group|hosts/ {for(i = 2; i <= NF; ++i) print $i}' /etc/nsswitch.conf | sort | uniq)"
|
||||
databases="$(awk '/^group|hosts/ {for(i = 2; i <= NF; ++i) print $i}' /etc/nsswitch.conf | LC_ALL=C sort -u)"
|
||||
for db in $databases; do
|
||||
for f in /lib/*/"libnss_$db"*; do
|
||||
INST_LIB "$f"
|
||||
|
Loading…
x
Reference in New Issue
Block a user