diff options
Diffstat (limited to 'src/configure')
-rwxr-xr-x | src/configure | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/configure b/src/configure index 00944c7..075d8f5 100755 --- a/src/configure +++ b/src/configure @@ -110,15 +110,21 @@ do exit 0 ;; *) - if [ $EBUILD_COMPAT -ne 1 ]; then - echo "Unknown argument: $arg" - print_usage - exit 1 - fi + ERRORS="$ERRORS $arg" ;; esac done +if [ -n "$ERRORS" ] && [ $EBUILD_COMPAT -ne 1 ]; then + for error in $ERRORS; do + echo "Unknown argument: $error" + done + + print_usage + exit 1 +fi + + rm -f include.mk case $TARGET in Linux) |