diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-03-24 15:19:55 +0000 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2010-03-24 10:26:44 -0700 |
commit | 057eab83c13a246b98b29e82922397a86aba4654 (patch) | |
tree | c45fdf01442e1332a0adc63187640a8259afdd4f /xts5/Xlib10 | |
parent | e8c0d106e5a6e4c65cda79c9213391b214f03130 (diff) |
xts5: Remove an unneeded $(EXEEXT)
tprogs lists the test programs without $(EXEEXT), so substituting
the $(EXEEXT) with .c to get BUILD_SOURCES fails to work correctly
when $(EXEEXT) isn't empty
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
Diffstat (limited to 'xts5/Xlib10')
-rw-r--r-- | xts5/Xlib10/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xts5/Xlib10/Makefile.am b/xts5/Xlib10/Makefile.am index 1d72573f..2812de59 100644 --- a/xts5/Xlib10/Makefile.am +++ b/xts5/Xlib10/Makefile.am @@ -14,7 +14,7 @@ LDADD = $(top_builddir)/src/tet3/tcm/libtcmmain.la \ testprogdir = $(libexecdir)/$(subdir) nobase_testprog_PROGRAMS = $(tprogs) -BUILT_SOURCES = $(tprogs:$(EXEEXT)=.c) +BUILT_SOURCES = $(tprogs:=.c) CLEANFILES = $(BUILT_SOURCES) tprogs = \ |