Comment # 6
on bug 11896
from Jörg Mayer
Well, the current cmake rules don't like the way the stuff gets packaged: It
tries to create a rule to create help/faq.txt which is already present:
This is the line it collides with: ' list(APPEND DATA_FILES_SRC "help/*.txt")
'
Can be easily reproduced in the original source by "touch help/faq.txt && cmake
...
So the question is what is the right fix?
a) Not packaging help/faq.txt at all
b) Packaging it under an different name (help/faq-dist.txt) and change the
generator rule to use that file in case the file cannot be newly generated
c) Change the quoted line to not match help/faq.txt
d) Something I haven't thought of.
You are receiving this mail because:
- You are watching all bug changes.