Skip to content

Commit

Permalink
src/Makefile.am: Use $() for consistency
Browse files Browse the repository at this point in the history
Some code was using $() and other ${}.  Use the same everywhere.

Reported-by: Sam James <[email protected]>
Signed-off-by: Alejandro Colomar <[email protected]>
  • Loading branch information
alejandro-colomar committed Mar 4, 2025
1 parent 3d09f4f commit 51b0e9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
EXTRA_DIST = \
.indent.pro

ubindir = ${exec_prefix}/bin
usbindir = ${exec_prefix}/sbin
ubindir = $(exec_prefix)/bin
usbindir = $(exec_prefix)/sbin
suidperms = 4755
sgidperms = 2755

AM_CPPFLAGS = \
-I${top_srcdir}/lib \
-I$(top_srcdir)/lib \
-I$(top_srcdir) \
-DLOCALEDIR=\"$(datadir)/locale\" \
$(ECONF_CPPFLAGS)
Expand Down

0 comments on commit 51b0e9f

Please sign in to comment.