1
0
Fork 0
virtualbox/debian/patches/23-remove-invalid-chars-check.patch
Daniel Baumann aef005766e
Adding debian version 7.0.20-dfsg-1.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 09:56:25 +02:00

18 lines
572 B
Diff

Description: Remove check for invalid characters in the build path since we have fixed
kBuild to handle those paths starting from version 1:0.1.98svn2318-7.
Author: Felix Geyer <fgeyer@debian.org>
--- a/configure
+++ b/configure
@@ -195,11 +195,6 @@ BUILD_TYPE="release"
# the restricting tool is ar (mri mode).
INVALID_CHARS="[^A-Za-z0-9/\\$:._-]"
-if (cd `dirname $0`; pwd)|grep -q "$INVALID_CHARS"; then
- echo "Error: VBox base path contains invalid characters!"
- exit 1
-fi
-
# Posix /bin/sh isn't supporting echo -n. Use printf instead.
ECHO_N="printf"