summaryrefslogtreecommitdiff
path: root/src/fix-install-headers.sh
blob: 39d8bc663a6c9bc0ae79a82178deabfe8792e08b (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bash

set -e -o pipefail

dir=$1
find "$dir/include/cvc4/" -type f \
  -exec sed -i'' -e 's/include.*"\(.*\)"/include <cvc4\/\1>/' {} +
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback