-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate entries in connection with Alex and Happy #406
Comments
Inserting a `nub` here is strictly improving the state of affairs, since cabal chokes on a module list with duplicates. This patch might also fix sol#353.
@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 |
Inserting a `nub` here is strictly improving the state of affairs, since cabal chokes on a module list with duplicates. This patch might also fix #353.
Thanks for the quick fix.
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.The text was updated successfully, but these errors were encountered: