annotate src/mingw-fontconfig-ln_s.patch @ 3725:2acaa9943159

qscintilla: update 2.8.4 * src/qscintilla.mk: update to version and checksum for 2.8.4
author John Donoghue
date Mon, 20 Oct 2014 11:01:00 -0400
parents 763df540d5d5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3546
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -ur fontconfig-2.11.0.orig/conf.d/Makefile.am fontconfig-2.11.0/conf.d/Makefile.am
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- fontconfig-2.11.0.orig/conf.d/Makefile.am 2014-02-22 20:53:48.000000000 -0500
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ fontconfig-2.11.0/conf.d/Makefile.am 2014-02-22 20:59:45.000000000 -0500
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -88,9 +88,9 @@
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 @(echo cd $(DESTDIR)$(configdir); \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 cd $(DESTDIR)$(configdir); \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 for i in $(CONF_LINKS); do \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 - echo $(RM) $$i";" $(LN_S) $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 + echo $(RM) $$i";" cp $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(RM) $$i; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 - $(LN_S) $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 + cp $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 done)
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 uninstall-local:
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 @(echo cd $(DESTDIR)$(configdir); \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16 diff -ur fontconfig-2.11.0.orig/conf.d/Makefile.in fontconfig-2.11.0/conf.d/Makefile.in
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 --- fontconfig-2.11.0.orig/conf.d/Makefile.in 2014-02-22 20:53:48.000000000 -0500
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 +++ fontconfig-2.11.0/conf.d/Makefile.in 2014-02-22 21:01:04.000000000 -0500
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 @@ -632,9 +632,9 @@
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 @(echo cd $(DESTDIR)$(configdir); \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
21 cd $(DESTDIR)$(configdir); \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 for i in $(CONF_LINKS); do \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 - echo $(RM) $$i";" $(LN_S) $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
24 + echo $(RM) $$i";" cp $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
25 $(RM) $$i; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
26 - $(LN_S) $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
27 + cp $(DESTDIR)$(templatedir)/$$i .; \
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
28 done)
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
29 uninstall-local:
763df540d5d5 fontconfig: Use cp for mingw cross build
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
30 @(echo cd $(DESTDIR)$(configdir); \