Unverified Commit 90914ee7 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

qpdfview: fix build

With structuredAttrs support in 1bcca7d6
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
parent 31437c83
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@ mkDerivation rec {
    ghostscript
  ];

  # needed for qmakeFlags+=( below
  __structuredAttrs = true;

  preConfigure = ''
    lrelease qpdfview.pro
    qmakeFlags+=(*.pro)