Bugfix: "make rpm-package" would fail if help/faq.txt didn't exist already.

The reason was that FAQ incorrectly depended on help/faq.txt. Correct
  dependency is, that both files depend only on the generator.

svn path=/trunk/; revision=27080
This commit is contained in:
Jörg Mayer 2008-12-22 12:28:27 +00:00
parent 92fb6ca65f
commit 9781112aaa
1 changed files with 1 additions and 1 deletions

View File

@ -787,7 +787,7 @@ else
SUBDIRS = tools wsutil wiretap doc epan packaging help @wireshark_SUBDIRS@
endif
FAQ: help/faq.txt $(srcdir)/help/faq.py
FAQ help/faq.txt: $(srcdir)/help/faq.py
(cd help ; \
$(MAKE) faq.txt ; \
cp faq.txt ../FAQ )