forked from mirrors/nixpkgs
cdrtools: stop installing useless man pages
The installed man{3,4} pages are for silly NIH build tools (!), and conflict with useful packages like `man-pages`. Drop 'em.
This commit is contained in:
parent
1c9d5306fb
commit
be7253d846
|
@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ acl libcap ];
|
||||
|
||||
postPatch = ''
|
||||
sed "/\.mk3/d" -i libschily/Targets.man
|
||||
substituteInPlace man/Makefile --replace "man4" ""
|
||||
'';
|
||||
|
||||
configurePhase = "true";
|
||||
|
||||
GMAKE_NOWARN = true;
|
||||
|
|
Loading…
Reference in a new issue