guix-install.sh: Use a deterministic umask.
[jackhill/guix/guix.git] / gnu / packages / patches / handbrake-opt-in-nvenc.patch
CommitLineData
4bdd41bb
EB
1Require opt-in for NVEnc support. Otherwise the default is true with no way
2to disable it.
3
4--- HandBrake-1.2.0/make/configure.py.orig 1969-12-31 18:00:00.000000000 -0600
5+++ HandBrake-1.2.0/make/configure.py 2019-01-22 23:22:46.186959060 -0600
6@@ -1320,7 +1320,7 @@
7 grp.add_option( '--disable-ffmpeg-aac', dest="enable_ffmpeg_aac", action='store_false' )
8
9 h = IfHost( 'enable Nvidia NVEnc video encoder', '*-*-*', none=optparse.SUPPRESS_HELP ).value
10- grp.add_option( '--enable-nvenc', dest="enable_nvenc", default=not (host.match( '*-*-darwin*' ) or host.match( '*-*-freebsd*' )), action='store_true', help=h )
11+ grp.add_option( '--enable-nvenc', dest="enable_nvenc", default=False, action='store_true', help=h )
12
13
14 cli.add_option_group( grp )