#!/bin/sh
# DF-0106 build script (run on the DragonFly guest, as the unprivileged build user).
# Compiles the writedisklabel-path trigger.
set -e
cd "$(dirname "$0")"
cc -O0 -o poc_writedisklabel poc_writedisklabel.c
echo "BUILD_OK: $(ls -l poc_writedisklabel)"
