summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2014-09-06 16:48:29 -0700
committerJim Meyering <meyering@fb.com>2014-11-30 18:59:33 -0800
commit7a1a80603c2ff6142c2372fcd31b9f8ce9983be8 (patch)
tree6a4ca0e70e73eb0b52aa80e5f6dbca21c8c3c4f4
parentd15bafd70476bdf29d007b0ab5097669f50927c0 (diff)
downloadsed-7a1a80603c2ff6142c2372fcd31b9f8ce9983be8.tar.gz
maint: convert obsolescent @VAR@ notation to $(VAR)
* sed/Makefile.am (sed_LDADD): Use $(VAR), no @VAR@.
-rw-r--r--sed/Makefile.am4
1 files changed, 1 insertions, 3 deletions
diff --git a/sed/Makefile.am b/sed/Makefile.am
index a164255..b38a779 100644
--- a/sed/Makefile.am
+++ b/sed/Makefile.am
@@ -9,9 +9,7 @@ noinst_HEADERS = sed.h utils.h
AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir) -I$(top_builddir)/lib \
-DLOCALEDIR=\"$(localedir)\"
-sed_LDADD = ../lib/libsed.a @INTLLIBS@ @LIB_ACL@ @LIB_SELINUX@
+sed_LDADD = ../lib/libsed.a $(INTLLIBS) $(LIB_ACL) $(LIB_SELINUX)
sed_DEPENDENCIES = ../lib/libsed.a
$(PROGRAMS): $(LDADD)
-
-