Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix out-of-source build #145

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix out-of-source build
Build fails when running configure outside top-level directory, with
debug enabled and on system that does not provide hexdump()
  • Loading branch information
Petr Ledvina committed Jun 23, 2023
commit e632092b661931a3f3c5ca00a16364f1e3afc20d
2 changes: 1 addition & 1 deletion libfreefare/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if HAS_LIBUTIL
libfreefare_la_LIBADD += -lutil
else # HAS_LIBUTIL
libfreefare_la_LIBADD += $(top_builddir)/contrib/libutil/libutil.la
AM_CFLAGS += -I$(top_builddir)/contrib/libutil/
AM_CFLAGS += -I$(top_srcdir)/contrib/libutil/
endif # !HAS_LIBUTIL
endif # WITH_DEBUG

Expand Down