add placeholder boot files to simplify local installs#272
Merged
andreasabel merged 1 commit intohaskell:masterfrom Apr 6, 2025
Merged
add placeholder boot files to simplify local installs#272andreasabel merged 1 commit intohaskell:masterfrom
andreasabel merged 1 commit intohaskell:masterfrom
Conversation
andreasabel
approved these changes
Apr 6, 2025
Member
andreasabel
left a comment
There was a problem hiding this comment.
I tested this, seems to work!
netbsd-srcmastr
pushed a commit
to NetBSD/pkgsrc
that referenced
this pull request
Aug 21, 2025
## Changes in 3.5.4.0 * Fix [issue #277](haskell/alex#277): compatibility of generated code with `{-# LANGUAGE ImpredicativeTypes #-}`, thanks Nadia Yvette Chambers! * Simplify `cabal install` ([PR #272](haskell/alex#272)), thanks Antoine Leblanc! * Document `examples/words.x`, thanks Piotr Justyna! * Tested with GHC 8.0 - 9.12.2.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is a small quality of life change.
As part of the tarball creation process, the Makefile
sdistcommand creates two new files,src/Scan.x.bootandsrc/Parser.y.boot. Since we want them included in the resulting tarball, they are also listed in theextra-source-filesinalex.cabal. This creates a bit of friction for developers: as those files do not exist in the repo itself, calls tocabal installfail.To fix this, this PR adds two empty placeholder files. They do not impact any other workflow, but now allow
cabal installto succeed.