mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
qpdfview: fix build
With structuredAttrs support in 1bcca7d66b
this broke, because the following line turns qmakeFlags from a string
into an array:
qmakeFlags+=(...)
It will then be handled slightly different when it's an array, so that
all the xxx_INSTALL_PATH variables are passed as a *single* argument,
which breaks the build.
Resolves #342087
This commit is contained in:
parent
31437c8315
commit
90914ee74f
@ -40,6 +40,9 @@ mkDerivation rec {
|
||||
ghostscript
|
||||
];
|
||||
|
||||
# needed for qmakeFlags+=( below
|
||||
__structuredAttrs = true;
|
||||
|
||||
preConfigure = ''
|
||||
lrelease qpdfview.pro
|
||||
qmakeFlags+=(*.pro)
|
||||
|
Loading…
Reference in New Issue
Block a user