Error While Patching File Acrmp.exe
I have a directory contains several files to be modified. Instead of doing changes manually(because there are so many files) i downloaded a diff file(made by some other user), this diff file is executed by a .bat file.
Game update (patch) to Assassin's Creed: Revelations, a(n) action game, v.1.02 - v.1.03, added on Monday, March 5, 2012. File typeGame update. File size81.2 MB. Error while patching ACRMP.exe. Incorrect source file. An error occured during updating ACRMP.exe. Metafile error while patching. I see this error. I don't see a.pak file mentioned anywhere in the area where the errors start. It seems to be unable to locate. Page 5 of 5 - Error while patching - posted in Technical Support: This error is popping up because we are fiddling with the patch currently, and didn't have time to make the transition smooth.It will stop giving the error once we are done applying the fixes, and you should be able to patch appropriately.We don't expect this to happen every.
let me make it more systematic.
- bat file is
WinDDK_7600.16385.1_patch.bat
and path of this file is(C:UserskunzeDocumentsVisual Studio 2010Projectsbusmaster-masterDocuments1 Development Environmentfiles
)
Bully save game chapter 5 download. contents of this file are
When i run bat file this will run
WinDDK_7600.16385.1.diff
and this difference file has changes for many fileslocated inC:WinDDK
. Path of this file isC:UserskunzeDocumentsVisual Studio 2010Projectsbusmaster-masterDocuments1 Development Environmentfiles
Files for which differences need to be updated are located in this directory
C:WinDDK
I already have set path environment variable for git/bin
Can someone please let me know what changes should i made in my
WinDDK_7600.16385.1_patch.bat
file so that it will find and update all the files located inC:WinDDK
directory
I have tried several times and every time i am getting this error 'Assertion failed: hunk, file ./patch-2.5.9-src/patch.c, line 354'
? whats the issue ?
3 Answers
.diff
files, the patch
tool and their relevance to Git
Microsoft Exe Error Fix
First of all, this problem has nothing to do with Git. Git for Windows, which you supposedly have installed on your computer, just happens to be shipped with the Windows port of patch
—a program to apply changes described by specially-formatted files. Specifically, GfW includes the GNU patch program.
The patch.exe
program supplied with GfW is located under %ProgramFiles%Gitbin
(unless you've overriden the installation location).
What does a .diff
file contain and how patch
works
The patch file format
To cite the Wikipedia article linked above, a diff file looks like this:
Here's what we have here:
- First are the two lines of the header which describe which file was original and which one was 'new' when the diff file was generated based on them—the differences are in the 'new' file compared to the 'original' one.
The
@@ .. @@
blocks delimit 'hunks' which describe where in the original file the piece to change by this hunk is located, how many lines it originally contained and how many it will contain after patching.The next (and most important) thing about the hunk is change markers:
+
denote added lines,-
denote deleted lines while lines prefixed with (a single space character) do not change and provide context for thepatch
tool to be able to perform 'fuzzy matching'—based not only on line count but on actual file content as well.
How the patch
tool works
The patch
tool takes the .diff
file and
- Reads it up until the first header, parses the header, extracts the name of the file to patch from it.
- Locates the file with the name obtained on step (1) in the target directory.
Reads the first hunk, locates it in the file it found, and applies the patch from the hunk.
If patching the hunk fails,
patch
creates a special 'rejects' file (by combining the tail name of the file it attempted to patch plus the.rej
extension) and writes there the failed hunk.Goes to the next hunk and repeats until the end of the patch file is hit of the new header is found.
If the next header is found, it repeats the steps starting from (2), otherwise it exits.
How the patch
tool locates the files to patch
Most often, headers in patch files contain relative pathnames (like foo/bar/baz.c
) and the patch
tool goes like this:
- Extracts that name from the header.
- Takes the tool's current directory and appends that pathname onto it to get the name of the file to patch.
Two command-line options affect the patch
tool's behaviour:
- The
-d <dir>
option tell it to change its current directory to<dir>
before doing its work. The
-p N
option tell it to trimN
path components off the pathname extracted from the header before further considering it.This means that with
-p1
passed to it,patch
would convertfoo/bar/baz.c
tobar/baz.c
before trying to locate that file.
By now, you should be able to fully understand what your batch file does, and I ask you to work this out to stop considering all this the black voodoo.
'Assertion failed' error from the patch
tool
My guess is that you've hit an unfortunate bug which occasionally manifests itself in various Windows ports of patch
—a problem with EOL markers: the tool simply chokes on CR
+LF
sequences.
Possible ways to work around this:
Error While Patching File Acrmp.exe
- Try
git apply
as explained here—Git does not usepatch.exe
but rather its own machinery which is taught by GfW porters to work okay with Windows EOLs. Try other ports of
patch
, for instance this one from the GnuWin32 project.Note that you might hit some UAC problem with it; here is how to fix it.
Accelerator Exe Error
Everything was correct except a small problem. Actually a patch command works fine on linux OS but on Winows one must have a patch file only in txt format i.e should be WinDDK_7600.16385.1.txt instead of WinDDK_7600.16385.1.diff.
And also go through the answer of @kistix and try his recommendation, if my solution dosent work, he explained things nicely.
You need to convert the EOL-marker of the diff file(s) to match your OS platform.
Take manage of Crash and Coco as they travel thru 30 ranges throughout 5 time periods that allows you to forestall Uka and Cortex. Use a bike, plane, bazooka, and a infant T-rex to help Crash live to tell the tale, or wreck the bad men by way of the usage of new moves just like the wonderful belly flop or the double bounce. Tropy to create a time machine, for you to permit Uka and Cortex to head lower back and take the crystals without interference. Will Crash and Coco be able to save the world? Download crash bandicoot 3 warped for android.
If you are using Linux, you can use the tool dos2unix file_name.diff
On Windows you can use notepad++:
- Load the file in notepad++
- Edit->EOL Conversion -> Windows Format