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

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

Issue 618013002: Instrumented libraries: replace some makefile patches with sed invocations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
(Empty)
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
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
5 LOADERS=`echo libpixbufloader-*.la` ; \
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."; \
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 \
10 + # won't work. \
11 + /usr/bin/gdk-pixbuf-query-loaders $$LOADERS > ./loaders.cache ;\
12 else \
13 echo "No dynamic modules found; will use only static modules for unin stalled example programs."; \
14 touch loaders.cache; \
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698