1 2 3 4 5 6 7
#!/bin/sh # Build the in-guest image-patcher. # Must run on a DragonFlyBSD guest as the user who will run repro.sh. set -e cd "$(dirname "$0")" cc -O2 -Wall -o image_patcher image_patcher.c -lz echo "built: $(ls -l image_patcher)"