mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
curl will save the 404 response page (or another error) if the page download fails, which we never want. Let it error out instead.
14 lines
392 B
Bash
Executable File
14 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
for i in *.h */*.h; do
|
|
if [[ $i == 'loadavg.h' ]]; then
|
|
curl --fail https://raw.githubusercontent.com/torvalds/linux/master/include/linux/sched/$i -o $i
|
|
else
|
|
curl --fail https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/$i -o $i
|
|
fi
|
|
|
|
sed -i -e 's/__user //g' -e '/^#include <linux\/compiler.h>/ d' $i
|
|
done
|