From 5ab1b19fb467511f170e527f899fcc2b63a3188f Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Wed, 3 Aug 2016 19:43:34 +0200 Subject: [PATCH] Makefile.am: use Makefile-style variable expansion Do not use ${foo} in Makefile.am, prefer using the traditional Makefile-style $(foo). Signed-off-by: "Yann E. MORIN" --- frontends/mconf/Makefile.am | 2 +- libs/lxdialog/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/mconf/Makefile.am b/frontends/mconf/Makefile.am index 5ea3c48..47240f2 100644 --- a/frontends/mconf/Makefile.am +++ b/frontends/mconf/Makefile.am @@ -2,7 +2,7 @@ bin_PROGRAMS = mconf mconf_SOURCES = mconf.c mconf_CPPFLAGS = $(AM_CPPFLAGS) \ - ${ncurses_mconf_CPPFLAGS} \ + $(ncurses_mconf_CPPFLAGS) \ $(intl_CPPFLAGS) \ -I$(top_srcdir)/libs \ -I$(top_srcdir)/libs/parser diff --git a/libs/lxdialog/Makefile.am b/libs/lxdialog/Makefile.am index 73b084e..a5ba6be 100644 --- a/libs/lxdialog/Makefile.am +++ b/libs/lxdialog/Makefile.am @@ -10,6 +10,6 @@ libkconfig_lxdialog_a_SOURCES = \ yesno.c libkconfig_lxdialog_a_CPPFLAGS = $(AM_CPPFLAGS) \ - ${ncurses_mconf_CPPFLAGS} \ + $(ncurses_mconf_CPPFLAGS) \ $(intl_CPPFLAGS) liblxdialog_a_CFLAGS = $(AM_CFLAGS) $(kf_CFLAGS) -- 2.39.2