You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many packages don't require make && make install, only make install is needed. Furthermore, some of them will fail when running make (outside a build/dev context).
Being able to run only make install would be a good addition.
Many packages don't require
make && make install
, onlymake install
is needed. Furthermore, some of them will fail when runningmake
(outside a build/dev context).Being able to run only
make install
would be a good addition.Another option would be to introduce a
:make_target
, when specified only that make target would run.That way, someone needing to run only
make install
would use:make_target => 'install'
.Someone else may want to check
curl
and could use:make_target => 'check'
(https://github.com/curl/curl/blob/master/Makefile.am#L177).The text was updated successfully, but these errors were encountered: