Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
fix linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
aakropotkin committed Aug 17, 2023
1 parent a8a2df8 commit c455ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ bin/pkgdb: CXXFLAGS += $(bin_CXXFLAGS)
bin/pkgdb: LDFLAGS += $(bin_LDFLAGS)
bin/pkgdb: $(bin_SRCS:.cc=.o) lib/$(LIBFLOXPKGDB)
$(MKDIR_P) $(@D)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o "$@"
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(filter %.o,$^) -o "$@"


# ---------------------------------------------------------------------------- #
Expand Down

0 comments on commit c455ac4

Please sign in to comment.