aboutsummaryrefslogtreecommitdiffstats
path: root/config/systempatches/patches.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config/systempatches/patches.inc')
-rw-r--r--config/systempatches/patches.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/systempatches/patches.inc b/config/systempatches/patches.inc
index 8dd78fd9..971b9da3 100644
--- a/config/systempatches/patches.inc
+++ b/config/systempatches/patches.inc
@@ -41,9 +41,9 @@ function patch_commit($patch, $action, $test=false) {
$force = ($action == "revert") ? "-f" : "-t";
$direction = ($action == "revert") ? "--reverse" : "--forward";
$whitespace = $patch['ignorewhitespace'] ? "--ignore-whitespace" : "";
- $patchlevel = '-p' . $patch['patchlevel'];
+ $pathstrip = '-p' . $patch['pathstrip'];
patch_write($patch);
- $status = mwexec("{$patch_cmd} {$force} {$patchlevel} {$filename} {$check} {$direction} {$whitespace}", false);
+ $status = mwexec("{$patch_cmd} {$force} {$pathstrip} {$filename} {$check} {$direction} {$whitespace}", false);
patch_erase($patch);
if ($status == 0)
return true;