openbsd-ports/audio/rplay/scripts/configure
1997-12-05 02:18:05 +00:00

9 lines
248 B
Bash

#!/bin/sh
chmod -R +w ${WRKSRC}
echo -n "Removing disgusting malloc.h includes. Please wait.."
for i in `find ${WRKSRC} -name '*.[ch]' | xargs fgrep -l malloc.h`; do
sed -e 's/malloc.h/stdlib.h/' < $i > $i.bak && mv $i.bak $i
done
echo " Done."