mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
Fix missing xapian-flags when generating dependencies.
I didn't notice this because `xapian-config -cxxflags` gives empty output on my system. But for someone with the xapian library installed in some non-standard location this would be important.
This commit is contained in:
parent
445234ac1f
commit
179629b672
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -33,7 +33,7 @@ notmuch: $(MODULES)
|
|||
$(CC) $(MYLDFLAGS) $^ -o $@
|
||||
|
||||
Makefile.dep: *.c *.cc
|
||||
$(CC) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $^ > $@
|
||||
$(CXX) -M $(CPPFLAGS) $(CDEPENDS_FLAGS) $(CXXDEPENDS_FLAGS) $^ > $@
|
||||
-include Makefile.dep
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Reference in a new issue