diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2012-01-20 15:19:26 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2012-01-20 15:19:26 -0500 |
commit | 789a5b42a716b14429c67161147151dd57dd5480 (patch) | |
tree | 1e4eb7d1af64588201bc84cfa061f6fa1a8cac07 /Makefile.am | |
parent | 5f064f70b183147578919166bedeca55cdb0af71 (diff) |
make: remove $(LIBOBJS) dead code
Starting at Autoconf 2.53, the use of LIBOBJS is an error.
http://www.gnu.org/software/autoconf/manual/autoconf.html#
AC_005fLIBOBJ-vs-LIBOBJS
There are no system functions to override in this module.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 0fb5667..edef6a7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,7 +23,7 @@ SUBDIRS = man bin_PROGRAMS = xlsclients AM_CFLAGS = $(CWARNFLAGS) $(XLSCLIENTS_CFLAGS) -xlsclients_LDADD = $(XLSCLIENTS_LIBS) $(LIBOBJS) +xlsclients_LDADD = $(XLSCLIENTS_LIBS) xlsclients_SOURCES = \ xlsclients.c |