All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] acinclude: Correct CFLAGS variable name typo.
@ 2019-06-13 16:52 Ossama Othman
  2019-06-14 21:33 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Ossama Othman @ 2019-06-13 16:52 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 738 bytes --]

The "-Wvariadic-macros" compiler command line option was appended to
the "CFALGS" variables instead of "CFLAGS", which prevented it from
being used when building ELL.  Change "CFALGS" to "CFLAGS".
---
 acinclude.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/acinclude.m4 b/acinclude.m4
index cad86ec..1bd01d0 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -60,7 +60,7 @@ AC_DEFUN([COMPILER_FLAGS], [
 		CFLAGS+=" -Wredundant-decls"
 		CFLAGS+=" -Wswitch-enum"
 		CFLAGS+=" -Wtype-limits"
-		CFALGS+=" -Wvariadic-macros"
+		CFLAGS+=" -Wvariadic-macros"
 		CFLAGS+=" -Wformat -Wformat-security"
 		if ( $CC -v 2>/dev/null | grep "gcc version" ); then
 			CFLAGS+=" -Wcast-align"
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] acinclude: Correct CFLAGS variable name typo.
  2019-06-13 16:52 [PATCH] acinclude: Correct CFLAGS variable name typo Ossama Othman
@ 2019-06-14 21:33 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2019-06-14 21:33 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 395 bytes --]

Hi Ossama,

On 06/13/2019 11:52 AM, Ossama Othman wrote:
> The "-Wvariadic-macros" compiler command line option was appended to
> the "CFALGS" variables instead of "CFLAGS", which prevented it from
> being used when building ELL.  Change "CFALGS" to "CFLAGS".
> ---
>   acinclude.m4 | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied, thanks.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-14 21:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-13 16:52 [PATCH] acinclude: Correct CFLAGS variable name typo Ossama Othman
2019-06-14 21:33 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.