mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 02:23:20 +00:00
13 lines
226 B
Bash
Executable File
13 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
cd $(dirname $0)
|
|
|
|
(
|
|
sed -e '/automatically generated by rust-bindgen/,$d' src/bindings.rs
|
|
bindgen --with-derive-default wrapper.h
|
|
) > new-bindings.rs~
|
|
|
|
mv new-bindings.rs~ src/bindings.rs
|