about summary refs log tree commit diff
path: root/pkgs/tools/networking/ofono
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-03 12:38:57 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-09-03 13:01:42 -0400
commit59e68d3b742a8972ccd496dce7fb9bd2dd8facbf (patch)
treec197e455a6f1c192121f6fc1741c8470fd4f2890 /pkgs/tools/networking/ofono
parent8c772a6183560bb8ad77f2d0715885456e17b9e5 (diff)
treewide: don't use single quotes with placeholder
Diffstat (limited to 'pkgs/tools/networking/ofono')
-rw-r--r--pkgs/tools/networking/ofono/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/ofono/default.nix b/pkgs/tools/networking/ofono/default.nix
index 21d1f9ee0675e..27f4b9562b38b 100644
--- a/pkgs/tools/networking/ofono/default.nix
+++ b/pkgs/tools/networking/ofono/default.nix
@@ -41,8 +41,8 @@ stdenv.mkDerivation rec {
   ];
 
   configureFlags = [
-    "--with-dbusconfdir=${placeholder ''out''}/share"
-    "--with-systemdunitdir=${placeholder ''out''}/lib/systemd/system"
+    "--with-dbusconfdir=${placeholder "out"}/share"
+    "--with-systemdunitdir=${placeholder "out"}/lib/systemd/system"
     "--enable-external-ell"
   ];