From ac8027bba347463f476a6f8a443ff4c079e985a3 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 14 May 2019 19:27:23 -0700 Subject: Fix duplicate comma --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 1ce642e..587ef36 100755 --- a/configure +++ b/configure @@ -85,7 +85,7 @@ case "$target" in crtbegin=$($CC -print-file-name=crtbegin.o 2>/dev/null) gcclibdir=${crtbegin%/*} fi - linkflags='"-L", "'$gcclibdir'"' + linkflags='"-L", "'$gcclibdir'",' defines=' /* prevent glibc from using statement expressions for assert */ "-D", "__STRICT_ANSI__", @@ -97,7 +97,7 @@ case "$target" in endfiles='"-l", "c", "-l", ":crtn.o"' # any value of __GNUC__ will cause FreeBSD's headers to use asm for bswap gnuc= - linkflags='"-L", "/usr/lib"' + linkflags='"-L", "/usr/lib",' defines=' "-D", "_Pragma(x)=", "-D", "_Nullable=", @@ -123,13 +123,13 @@ case "$target" in : ${DEFAULT_DYNAMIC_LINKER:=/usr/libexec/ld.so} startfiles='"-l", ":crt0.o", "-l", ":crtbegin.o"' endfiles='"-l", "c", "-l", ":crtend.o"' - linkflags='"-L", "/usr/lib"' + linkflags='"-L", "/usr/lib",' ;; *) fail "unknown target '$target', please create config.h manually" esac -test "$DEFAULT_DYNAMIC_LINKER" && linkflags=$linkflags', "--dynamic-linker", "'$DEFAULT_DYNAMIC_LINKER'"' +test "$DEFAULT_DYNAMIC_LINKER" && linkflags=$linkflags' "--dynamic-linker", "'$DEFAULT_DYNAMIC_LINKER'"' printf "creating config.h... " cat >config.h <