From bb30d867fef3f69ec0c84414c09039e1f89b34fd Mon Sep 17 00:00:00 2001 From: rofl0r Date: Thu, 12 Apr 2018 07:13:26 +0100 Subject: [PATCH] configure: prevent bug overwriting config.mak on OpenBSD the command writing the openbsd line was using >> before the call which was meant to initialize config.mak using >. closes #228 --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index b1eec43..b13a196 100755 --- a/configure +++ b/configure @@ -130,6 +130,7 @@ if [ -z "$CC" ] ; then CC=cc fi +echo > config.mak bsd_detected=false isbsd() { @@ -162,7 +163,7 @@ OUR_CPPFLAGS="$OUR_CPPFLAGS -DBROKEN_FCLOSE" } check_define __sun && check_define __SVR4 && solaris_detected=true -echo "CC=$CC">config.mak +echo "CC=$CC">>config.mak [ -z "$CPPFLAGS" ] || echo "CPPFLAGS=$CPPFLAGS">>config.mak [ -z "$CFLAGS" ] || echo "USER_CFLAGS=$CFLAGS">>config.mak [ -z "$LDFLAGS" ] || echo "USER_LDFLAGS=$LDFLAGS">>config.mak