>diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm >index 10aa3aa5b4..6e598e4d18 100644 >--- a/gnu/packages/docker.scm >+++ b/gnu/packages/docker.scm >@@ -375,7 +375,7 @@ built-in registry server of Docker.") > ((substitute-LookPath source-text package > relative-path) > #`(substitute* source-files >- ((#,(string-append "exec\\.LookPath\\(\"" >+ ((#,(string-append "\\ (syntax->datum > #'source-text) > "\")")) >@@ -389,7 +389,7 @@ built-in registry server of Docker.") > ((substitute-LookPath source-text package > relative-path) > #`(substitute* source-files >- ((#,(string-append "exec\\.Command\\(\"" >+ ((#,(string-append "\\ (syntax->datum > #'source-text) "\"") Then it wouldn't match those: ./builder/dockerfile/copy_windows.go: cmd := reexec.Command("windows-fix-permissions", source, destination, identity.SID) ./daemon/graphdriver/overlay2/mount.go: cmd := reexec.Command("docker-mountfrom", dir) ./daemon/graphdriver/windows/windows.go: cmd := reexec.Command(append([]string{"docker-windows-write-layer", d.info.HomeDir, id}, parentLayerPaths...)...) ./pkg/chrootarchive/archive_unix.go: cmd := reexec.Command("docker-untar", dest) ./pkg/chrootarchive/diff_unix.go: cmd := reexec.Command("docker-applyLayer", dest) Why did you change it?