From: Nick Bowler Date: Fri, 11 May 2012 22:48:37 +0000 (-0400) Subject: build: Fix makefile rules for decode-index test program. X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/commitdiff_plain/945a749daf29bd231440da551d3a53908880d278 build: Fix makefile rules for decode-index test program. libupkg.la got moved as a result of the non-recursive build changes, but it wasn't changed here. Also fix a typo in the Gnulib prerequisites. --- diff --git a/Makefile.am b/Makefile.am index 58f0e6c..fed99c1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -77,8 +77,8 @@ engine_la_LIBADD += $(LIBMODPLUG_LIBS) endif check_PROGRAMS = test/decodeindex -test_decodeindex_LDADD = src/libupkg.la libgnu.la -$(test_decodeinder_OBJECTS): $(gnulib_headers) +test_decodeindex_LDADD = libupkg.la libgnu.la +$(test_decodeindex_OBJECTS): $(gnulib_headers) TESTS_ENVIRONMENT = SHELL='$(SHELL)' EXEEXT='$(EXEEXT)' TEST_EXTENSIONS = .sh