Skip to content

Commit 3f4b958

Browse files
committed
mkproto.sh: get rid of unportable xargs -L
1 parent 863db6c commit 3f4b958

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libc/dj64/parsers/mkproto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export RTAGS
5454
list_syms $TL T | xargs -I '{}' bash -c "extr_proto $TF '{}' ASMFUNC" | nl -v 0 | sed -E 's/^ *//' >$1
5555
list_syms $TL U | xargs -I '{}' bash -c "extr_proto $TF '{}' ASMCFUNC" | nl -v 0 | sed -E 's/^ *//' >$2
5656
echo "#define THUNK_INCS 1" >$3
57-
list_syms2 $TL U T | xargs -L 1 $URTAGS -t $TF | expand | tr -s '[:blank:]' | \
57+
list_syms2 $TL U T | xargs -n 1 $URTAGS -t $TF | expand | tr -s '[:blank:]' | \
5858
cut -d " " -f 2 | sort | uniq | \
5959
sed -E 's/.*(include)\/(.*)/#\1 "\2"/' >>$3
6060
shift 3

0 commit comments

Comments
 (0)