Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Side by Side Diff: third_party/instrumented_libraries/patches/libgdk-pixbuf2.0-0.diff

Issue 361473002: Instrumented libraries: improve handling of custom patches. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use -i to pass filename to patch Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 diff -rupN ./gdk-pixbuf/Makefile.am ../gdk-pixbuf-2.26.1-patched/gdk-pixbuf/Make file.am 1 diff -rupN ./gdk-pixbuf/Makefile.am ../gdk-pixbuf-2.26.1-patched/gdk-pixbuf/Make file.am
2 --- ./gdk-pixbuf/Makefile.am 2012-04-14 22:11:34.000000000 +0400 2 --- ./gdk-pixbuf/Makefile.am 2012-04-14 22:11:34.000000000 +0400
3 +++ ../gdk-pixbuf-2.26.1-patched/gdk-pixbuf/Makefile.am 2014-04-17 19:37:22.1052 53318 +0400 3 +++ ../gdk-pixbuf-2.26.1-patched/gdk-pixbuf/Makefile.am 2014-04-17 19:37:22.1052 53318 +0400
4 @@ -782,7 +782,9 @@ loaders.cache: $(loader_LTLIBRARIES) gdk 4 @@ -782,7 +782,9 @@ loaders.cache: $(loader_LTLIBRARIES) gdk
5 LOADERS=`echo libpixbufloader-*.la` ; \ 5 LOADERS=`echo libpixbufloader-*.la` ; \
6 if test "x$$LOADERS" != 'xlibpixbufloader-*.la' ; then \ 6 if test "x$$LOADERS" != 'xlibpixbufloader-*.la' ; then \
7 echo "Writing a loaders.cache file to use when running examples befor e installing gdk-pixbuf."; \ 7 echo "Writing a loaders.cache file to use when running examples befor e installing gdk-pixbuf."; \
8 - $(top_builddir)/gdk-pixbuf/gdk-pixbuf-query-loaders $$LOADERS > ./load ers.cache ;\ 8 - $(top_builddir)/gdk-pixbuf/gdk-pixbuf-query-loaders $$LOADERS > ./load ers.cache ;\
9 + # Use the system-installed gdk-pixbuf-query-loaders. The just-built one \ 9 + # Use the system-installed gdk-pixbuf-query-loaders. The just-built one \
10 + # won't work. \ 10 + # won't work. \
11 + gdk-pixbuf-query-loaders $$LOADERS > ./loaders.cache ;\ 11 + gdk-pixbuf-query-loaders $$LOADERS > ./loaders.cache ;\
12 else \ 12 else \
13 echo "No dynamic modules found; will use only static modules for unin stalled example programs."; \ 13 echo "No dynamic modules found; will use only static modules for unin stalled example programs."; \
14 touch loaders.cache; \ 14 touch loaders.cache; \
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698