From: Sadie Powell Date: Sat, 6 Mar 2021 02:31:10 +0000 (+0000) Subject: Fix using single quotes where double quotes should be used. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;ds=sidebyside;h=fd6cb9cabafe32bddecdb71c96a0812fd8185e4c;p=user%2Fhenk%2Fcode%2Finspircd.git Fix using single quotes where double quotes should be used. --- diff --git a/configure b/configure index de9e93777..e3aaed040 100755 --- a/configure +++ b/configure @@ -393,7 +393,7 @@ if (prompt_bool $interactive, $question, 0) { 'm_regex_pcre.cpp' => 'pcre-config --version', 'm_regex_posix.cpp' => undef, 'm_regex_re2.cpp' => 'pkg-config --exists re2', - 'm_regex_stdlib.cpp' => '$config{CXX} -o /dev/null -std=c++11 $RealDir/make/test/compiler.cpp', + 'm_regex_stdlib.cpp' => "$config{CXX} -o /dev/null -std=c++11 $RealDir/make/test/compiler.cpp", 'm_regex_tre.cpp' => 'pkg-config --exists tre', 'm_sqlite3.cpp' => 'pkg-config --exists sqlite3', 'm_ssl_gnutls.cpp' => 'pkg-config --exists gnutls',