sane: *really* fix udev error

\#12874 tried to patch out the literal /bin/sh, but an additional space
sneaked in.
This commit is contained in:
Profpatsch 2016-02-09 00:13:07 +01:00
parent 9a72bf5c0f
commit 71d01db76f

View file

@ -52,7 +52,7 @@ stdenv.mkDerivation {
cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules
# the created 49-libsane references /bin/sh
substituteInPlace $out/etc/udev/rules.d/49-libsane.rules \
-- replace "RUN+=\"/bin/sh" "RUN+=\"${stdenv.shell}"
--replace "RUN+=\"/bin/sh" "RUN+=\"${stdenv.shell}"
substituteInPlace $out/lib/libsane.la \
--replace "-ljpeg" "-L${libjpeg}/lib -ljpeg"