mirror of
https://github.com/openharmony/third_party_musl2.git
synced 2026-07-24 23:05:45 -04:00
140315895f
2. Add BUILD.gn and its components Signed-off-by: zhuoli <pengzhuoli@huawei.com>
13 lines
190 B
Bash
Executable File
13 lines
190 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "$0 need 2 parameters, but the actual number is $#, please check!"
|
|
exit 1
|
|
fi
|
|
|
|
rm -f $2
|
|
|
|
cp $1 $2
|
|
|
|
sed -n -e s/__NR_/SYS_/p < $1 >> $2
|