Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saitoha committed Jan 13, 2020
1 parent 1b5eec8 commit 6ee0001
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ CTAGS = ctags
CSCOPE = cscope
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(srcdir)/libsixel.pc.in $(srcdir)/package.json.in.in \
ChangeLog NEWS compile config.guess config.sub install-sh \
ltmain.sh missing py-compile
ChangeLog NEWS compile config.guess config.sub depcomp \
install-sh ltmain.sh missing py-compile
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ tests_SOURCES = $(srcdir)/tests.c
tests_CPPFLAGS = -I$(top_builddir)/include/ \
-I$(top_builddir)/src/ $(AM_CPPFLAGS)
tests_CFLAGS = $(CFLAGS) $(AM_CFLAGS) $(MAYBE_COVERAGE)
tests_LDADD = $(top_builddir)/src/libsixel.la
tests_LDADD = $(srcdir)/libsixel.la
endif

dist_man_MANS = $(srcdir)/sixel.5
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ libsixel_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
am__tests_SOURCES_DIST = $(srcdir)/tests.c
@COND_TESTS_TRUE@am_tests_OBJECTS = tests-tests.$(OBJEXT)
tests_OBJECTS = $(am_tests_OBJECTS)
@COND_TESTS_TRUE@tests_DEPENDENCIES = $(top_builddir)/src/libsixel.la
@COND_TESTS_TRUE@tests_DEPENDENCIES = $(srcdir)/libsixel.la
tests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tests_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
Expand Down Expand Up @@ -463,7 +463,7 @@ libsixel_la_LIBADD = -lm \
@COND_TESTS_TRUE@ -I$(top_builddir)/src/ $(AM_CPPFLAGS)

@COND_TESTS_TRUE@tests_CFLAGS = $(CFLAGS) $(AM_CFLAGS) $(MAYBE_COVERAGE)
@COND_TESTS_TRUE@tests_LDADD = $(top_builddir)/src/libsixel.la
@COND_TESTS_TRUE@tests_LDADD = $(srcdir)/libsixel.la
dist_man_MANS = $(srcdir)/sixel.5
EXTRA_DIST = $(srcdir)/rgblookup.gperf
all: all-am
Expand Down

0 comments on commit 6ee0001

Please sign in to comment.