slstatus/configure
2018-04-30 16:27:07 +02:00

11 lines
134 B
Bash
Executable file

#!/bin/sh
os="$(uname)"
printf 'OS = %s\n' "$os" > os.mk
if [ "$os" = "OpenBSD" ]
then
printf 'OSLIBS = -lossaudio\n' >> os.mk
fi