Thanks for the help.
I'm not sure if I follow those instructions exactly, but I took a
guess at the intention.
To clarify, I only recognized the "diff" part of the command and was
able to find some similar paths.
I wasn't sure if the first line was the full command and if the other
lines were results or if they were part of the command.
Not making anything simpler for me, "--git" does not appear to be an
option for the version of "diff" on my system:
example:
>$diff --git a/libc/private/__dso_handle.S b/libc/private/__dso_handle.S
diff: unrecognized option `--git'
However, I was inspired by the "--git" to imagine that this might have
been comparing a repository version of the __dso_handle.S file to the
version I downloaded.
Thus, I tried re-download everything to see if there were differences
in that file in my previous and new download. However, they were
identical:
example:
for f in $(find ./ -name __dso_handle.S);do echo $f;diff -s $f
../ANDROID_SRM2/$f ;done
.//bionic/libc/private/__dso_handle.S
Files OLD_VERSION/bionic/libc/private/__dso_handle.S and
NEW_VERSION/.//bionic/libc/private/__dso_handle.S are identical
Also, I'm now thinking that I might need a little bit more specific of
of an instruction because I don't follow the meaning of the term
"patch" (not being familiar with how patches work).
I'd be more than happy to learn something about patches though!
Thanks,
Sean
> --
> You received this message because you are subscribed to the "Android Building" mailing list.
> To post to this group, send email to android-...@googlegroups.com
> To unsubscribe from this group, send email to
> android-buildi...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-building?hl=en
>