Bugfix: "make rpm-package" would fail if help/faq.txt didn't exist already.
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 22 Dec 2008 12:28:27 +0000 (12:28 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 22 Dec 2008 12:28:27 +0000 (12:28 +0000)
  The reason was that FAQ incorrectly depended on help/faq.txt. Correct
  dependency is, that both files depend only on the generator.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27080 f5534014-38df-0310-8fa8-9805f1628bb7

Makefile.am

index ef156f929ada9cc9d41d950304b43039e0084618..5c6abfddddd783e7a8fb7096701c42f46c537f0c 100644 (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 )