aboutsummaryrefslogtreecommitdiff
path: root/src/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.py')
-rw-r--r--src/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.py b/src/util.py
index 8549205..3a9367f 100644
--- a/src/util.py
+++ b/src/util.py
@@ -31,7 +31,7 @@ def prefix_cmd_with_abspath(cmd):
Usefull if cmd should be executed by the loader of a custom glibc."""
- if os.path.isabs(cmd):
+ if os.path.isabs(cmd) or cmd == "":
return cmd
binary_end = cmd.find(" ")