From 1dea93bfed984f7b3a7947571dfc6e1f6b348033 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 25 Apr 2017 21:46:46 +0200 Subject: configure: --add-cflags to amend $CFLAGS without replacing existing value(s) #858 --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 08f631ee..a81c7eb9 100755 --- a/configure +++ b/configure @@ -297,6 +297,9 @@ do --cflags) CFLAGS="$value" ;; + --add-cflags) + CFLAGS="$CFLAGS $value" + ;; --ldflags) LDFLAGS="$value" ;; -- cgit v1.2.3