-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
make with MULTICALL is missing symlink from test to [ #2420
Comments
Does #2432 fix this issue? |
I don't think so. I am currently creating a symlink here $ cat result/bin/\[
#!/nix/store/8kzsmwhvywdpd1zrygm0cb4zk7nqxga6-bash-4.4-p23/bin/sh
/nix/store/gas9wi3zc4a58di535vz14bjn1ch6m6p-uutils-coreutils-unstable-2021-06-17/bin/test "$@"
exit $? This is required for me to execute the |
We'd have to create the symlink in the makefile. I wonder if we also need to have symlinks for all the hashsum algorithms, such as |
It is not as easy as that because the multicall binary will not know how to handle [. |
If you create a symlink called |
Yeah, that works. I only skimmed the diff and didn't notice it. Now the final piece is that the makefile generates the symlink by default. |
So I actually think that I'll watch rust-lang/cargo#1706, which should make this possible, because afaict we'd only need a workaround for the feature name restriction anymore. |
When trying to build
i3
we encountered the following error from meson:which made me realize that the symlink from
test
to[
is not created when calling the makefile with MULTICALL.The text was updated successfully, but these errors were encountered: