-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
consoletools: copy utils to bin #15050
Conversation
By analyzing the blame information on this pull request, we identified @pSub, @aszlig and @wkennington to be potential reviewers |
cc @edolstra |
makeFlags = [ "DESTDIR=$(out)"]; | ||
|
||
installPhase = '' | ||
mkdir -p $out/bin | ||
cp utils/ffcfstress $out/bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Equivalently, cp -t $out/bin utils/*
EDIT: or even cp -R utils $out/bin
, I guess ...
@joachifm fixed (∩_∩) |
I wonder, does overriding the entire |
Currently on master, the installing profile does not have access to the binaries because they’re not copied to the correct directory. |
@ebzzry what I mean is that now only the binaries are installed. |
Actually, I just looked a bit closer and my suggestion is all wrong, as it would copy the source files into bin as well. The actual problem is that |
|
@joachifm fixed =) |
Thank you |
@joachifm Thanks! (/^▽^)/ |
No description provided.