Skip to content

Commit 8738df5

Browse files
src/Makefile.am: Use $() for consistency
Some code was using $() and other ${}. Use the same everywhere. Reported-by: Sam James <[email protected]> Signed-off-by: Alejandro Colomar <[email protected]>
1 parent c499e81 commit 8738df5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
EXTRA_DIST = \
33
.indent.pro
44

5-
ubindir = ${exec_prefix}/bin
6-
usbindir = ${exec_prefix}/sbin
5+
ubindir = $(exec_prefix)/bin
6+
usbindir = $(exec_prefix)/sbin
77
suidperms = 4755
88
sgidperms = 2755
99

1010
AM_CPPFLAGS = \
11-
-I${top_srcdir}/lib \
11+
-I$(top_srcdir)/lib \
1212
-I$(top_srcdir) \
1313
-DLOCALEDIR=\"$(datadir)/locale\" \
1414
$(ECONF_CPPFLAGS)

0 commit comments

Comments
 (0)