diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2021-01-21 08:39:48 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2021-01-21 08:39:48 -0500 |
commit | fe108303841eb241c0eb9142aefe57e3de698dbd (patch) | |
tree | b41075fe5a3139f31577bc2eab29947ff3cded14 | |
parent | 707f77c6a7b4a81340c2eb326a246982b3e7875b (diff) | |
download | rockbox-fe108303841eb241c0eb9142aefe57e3de698dbd.tar.gz rockbox-fe108303841eb241c0eb9142aefe57e3de698dbd.tar.bz2 rockbox-fe108303841eb241c0eb9142aefe57e3de698dbd.zip |
hiby_patcher: Tweak the fix needed to work around v1.31 AGPtek Rockers.
Change-Id: I6b8d175e0f6018281aedfa774488daecea1bc816
-rwxr-xr-x | tools/hiby_patcher.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hiby_patcher.pl b/tools/hiby_patcher.pl index cff029e03b..8d91cd5eb1 100755 --- a/tools/hiby_patcher.pl +++ b/tools/hiby_patcher.pl @@ -299,7 +299,7 @@ if ($hiby) { open UPDATEO, ">$versionname.new" || die ("Can't open version.txt!"); while (<UPDATE>) { - s/ver=1\.0\.0\.0/ver=2018-10-07T00:00:00+08:00/; + s/ver=1\.0\.0\.0/ver=ver=2018-10-07T00:00:00+08:00/; print UPDATEO; } |