Skip to content

Commit

Permalink
fix(build): Fix build configuration for --with-system-libtexpdf
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 26, 2023
1 parent 30ec2cc commit eeaf4de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ACLOCAL_AMFLAGS = -I build-aux
.DELETE_ON_ERROR:

SUBDIRS = justenough
if SYSTEM_LIBTEXPDF
if !SYSTEM_LIBTEXPDF
SUBDIRS += libtexpdf
endif

Expand Down Expand Up @@ -151,7 +151,9 @@ $(_BUILT_SUBDIRS): $(_SUBDIR_TELLS)
touch $@

$(_SUBDIR_TELLS):
if !SYSTEM_LIBTEXPDF
$(MAKE) $(AM_MAKEFLAGS) -C libtexpdf all
endif
$(MAKE) $(AM_MAKEFLAGS) -C justenough all

patterndeps = $(_FORCED) $(_TEST_DEPS) $(_DOCS_DEPS) | $(bin_PROGRAMS) $(DEPDIRS) $(LUAMODLOCK) $(_BUILT_SUBDIRS)
Expand Down

0 comments on commit eeaf4de

Please sign in to comment.