Skip to content

Commit de4cff5

Browse files
Vitexusclaude
andcommitted
fix: correct Makefile line continuation in sed injection (\\→\)
The python insertion script emitted \\ (two chars) which the shell interpreted as a literal backslash argument to sed instead of a Makefile recipe line continuation; replace with single \. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3f2c041 commit de4cff5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ override_dh_install:
2020
dh_install
2121
sed -i "1a defined('APP_NAME') || define('APP_NAME', '$(PKG_SOURCE)');" \
2222
debian/php-vitexsoftware-ease-html-widgets/usr/share/php/EaseHtmlWidgets/autoload.php
23-
sed -i "s|: 'unknown'|: '$(PKG_SOURCE)'|" \\
23+
sed -i "s|: 'unknown'|: '$(PKG_SOURCE)'|" \
2424
debian/php-vitexsoftware-ease-html-widgets/usr/share/php/EaseHtmlWidgets/autoload.php
25-
sed -i "s|: '0.0.0'|: '$(PKG_VERSION)'|" \\
25+
sed -i "s|: '0.0.0'|: '$(PKG_VERSION)'|" \
2626
debian/php-vitexsoftware-ease-html-widgets/usr/share/php/EaseHtmlWidgets/autoload.php
2727
sed -i "2a defined('APP_VERSION') || define('APP_VERSION', '$(PKG_VERSION)');" \
2828
debian/php-vitexsoftware-ease-html-widgets/usr/share/php/EaseHtmlWidgets/autoload.php

0 commit comments

Comments
 (0)