1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/configure
2017-11-08 08:49:56 +00:00

16 lines
213 B
Bash
Executable file

#!/bin/sh -e
ENV="$1"
if [ -z "$ENV" ]; then
ENV='build-x86'
fi
CONFIG="env/$ENV.mk"
if [ ! -f "$CONFIG" ]; then
echo >&2 "ERROR: file "$CONFIG" does not exist"
exit 1
fi
cp "$CONFIG" 'config.mk'