diff options
author | Martin Rüegg <[email protected]> | 2022-12-29 10:56:39 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2023-01-05 10:49:33 -0800 |
commit | fb000f786721204283af88ba0b76bf482704d470 (patch) | |
tree | 1910ccd551f9de3f9f07d80c13a77f0ecb6db4f0 /config | |
parent | db832c47feac4aadceb305cd79392311cc1ec99a (diff) |
Add quotation marks around `$PATH` for deb-utils
Fix #14338, failing to build deb-utils if existing `$PATH` variable
would include a whitespace.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Ryan Moeller <[email protected]>
Signed-off-by: Martin Rüegg <[email protected]>
Closes #14339
Diffstat (limited to 'config')
-rw-r--r-- | config/deb.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/deb.am b/config/deb.am index 76e54acfa..e9b3f70f0 100644 --- a/config/deb.am +++ b/config/deb.am @@ -78,7 +78,7 @@ deb-utils: deb-local rpm-utils-initramfs ## Debianized packages from the auto-generated dependencies of the new debs, ## which should NOT be mixed with the alien-generated debs created here chmod +x $${path_prepend}/dh_shlibdeps; \ - env PATH=$${path_prepend}:$${PATH} \ + env "PATH=$${path_prepend}:$${PATH}" \ fakeroot $(ALIEN) --bump=0 --scripts --to-deb --target=$$debarch \ $$pkg1 $$pkg2 $$pkg3 $$pkg4 $$pkg5 $$pkg6 $$pkg7 \ $$pkg8 $$pkg9 $$pkg10 $$pkg11 || exit 1; \ |