rtl8812au: Fix comment typo

The commit 5d693c84d2 cleaned up the
substitute() function in stdenv and caused this line to
fail.
This commit is contained in:
Daniel Fullmer 2017-08-11 23:31:08 -04:00
parent 0604106b30
commit afa9031062

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
patchPhase = ''
substituteInPlace ./Makefile --replace /lib/modules/ "${kernel.dev}/lib/modules/"
substituteInPlace ./Makefile --replace '$(shell uname -r)' "${kernel.modDirVersion}"
substituteInPlace ./Makefile --replace /sbin/depmod #
substituteInPlace ./Makefile --replace /sbin/depmod \#
substituteInPlace ./Makefile --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/"
'';