Skip to content
Snippets Groups Projects
Commit a491f810 authored by Isaac Potoczny-Jones's avatar Isaac Potoczny-Jones
Browse files

Copy command for 'make'

parent b185fefe
No related branches found
No related tags found
No related merge requests found
......@@ -133,11 +133,16 @@ defaultMainNoRead pkg_descr
no_extra_flags args
exec "make clean"
InstallCmd mprefix uInst -> do
((mprefix,uInst), _, args) <- parseInstallArgs (mprefix,uInst) args []
CopyCmd mprefix -> do
(mprefix, _, args) <- parseCopyArgs mprefix args []
no_extra_flags args
maybeExit $ system $ "make install" ++
maybe "" (" prefix="++) mprefix
InstallCmd mprefix uInst -> do
((mprefix,uInst), _, args) <- parseInstallArgs (mprefix,uInst) args []
no_extra_flags args
maybeExit $ system $ "make install"
when (isNothing mprefix) (exec "make register")
SDistCmd -> do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment