Closed andreasabel closed 4 years ago
@andreasabel hey! Thanks for bringing this up!
Not opposed to your suggestion of remove duplicates. But I would still want to have the full picture first.
How did Lex.hs
/Par.hs
end up in your source tree? I would assume that Cabal generates them in dist/build/autogen
(or some new-style
equivalent).
Thanks for the quick fix.
@andreasabel hey! Thanks for bringing this up!
Not opposed to your suggestion of remove duplicates. But I would still want to have the full picture first.
How did
Lex.hs
/Par.hs
end up in your source tree? I would assume that Cabal generates them indist/build/autogen
(or somenew-style
equivalent).
These files have been sitting in the source tree since I originally did not use any cabal configuration for this project (just a Makefile). To generate a cabal file, I used hpack and then ran into the problem of duplicates.
I think in case of Alex and Happy, my problem can be circumvented by not checking in the generated hs files into the source tree. However, Alex and Happy are natively supported by Cabal. Other build tools (such as my own, BNFC) do not enjoy the support by Cabal. Therefore, I also check in the files generated by the build tool into the source tree.
This might be the same problem as #353 . From these files in the source directory:
I am getting this entry in the generate
.cabal
file:Cabal does not like this:
Manually deleting the duplicate entries helps.
Suggestion:
nub
the generated list.