diff options
author | Michael Forney <mforney@mforney.org> | 2019-05-14 18:05:09 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-05-14 19:20:00 -0700 |
commit | 608910e8fd5d7a939d51adaf3c925dae7a6bac6f (patch) | |
tree | e1ed6bec829af8fc3b85f96cf6c86fd5762c6aba | |
parent | 7ccc6fde97af65fd471abea08bcf2ed8dbab4f52 (diff) |
configure: Clear some variables before we conditionally set them
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -52,6 +52,10 @@ aarch64*) qbetarget=arm64 ;; *) fail "unsupported architecture '${target%%-*}'" esac +startfiles=0 +endfiles=0 +defines= +linkflags= gnuc=' /* specify the GNU C extensions we support */ "-D", "__GNUC__=1", @@ -120,7 +124,6 @@ case "$target" in startfiles='"-l", ":crt0.o", "-l", ":crtbegin.o"' endfiles='"-l", "c", "-l", ":crtend.o"' linkflags='"-L", "/usr/lib"' - defines='' ;; *) fail "unknown target '$target', please create config.h manually" |