aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-22 12:28:27 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-22 12:28:27 +0000
commita35b8eed2529726fe66b836100c2efba1c23a2f1 (patch)
tree2831670f1e842bb6ddfc4e4df24793ec6af26aa4 /Makefile.am
parente3557a1df92df01cbb746da3b7a91695b7c4854f (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27080 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index ef156f929a..5c6abfdddd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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 )