mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
Closes: https://bugs.gentoo.org/929255 Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de> Closes: https://github.com/gentoo/gentoo/pull/39052 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
26 lines
658 B
Diff
26 lines
658 B
Diff
From ab6861f88b781b3e95ee67c01889b2c3f9f23e4d Mon Sep 17 00:00:00 2001
|
|
From: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
|
|
Date: Sun, 14 Apr 2024 11:18:52 +0200
|
|
Subject: [PATCH] Fix missing quotes on CXXFLAGS
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 8bd5411..5c940ee 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -43,7 +43,7 @@ AC_CONFIG_HEADERS([config/config.h include/LHAPDF/Version.h])
|
|
|
|
|
|
## Set default C++ optimisation level to -O3 and drop the -g debug flag
|
|
-if test -z $CXXFLAGS; then
|
|
+if test -z "$CXXFLAGS"; then
|
|
CXXFLAGS='-O3'
|
|
fi
|
|
|
|
--
|
|
GitLab
|
|
|