diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-12-13 07:15:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-12-13 07:15:10 +0000 |
commit | 297c271473bc68454275496fc12506341f4bbe74 (patch) | |
tree | 1415e0a7036a6dbb41c39faf82ebd1e2c13278ff /media-gfx/fontforge/files | |
parent | Removed broken version 1.10.00. Fixed several minor issues as per bug 194031. (diff) | |
download | gentoo-2-297c271473bc68454275496fc12506341f4bbe74.tar.gz gentoo-2-297c271473bc68454275496fc12506341f4bbe74.tar.bz2 gentoo-2-297c271473bc68454275496fc12506341f4bbe74.zip |
Fix from Martin von Gagern for parallel build problems #202019.
(Portage version: 2.1.4_rc9)
Diffstat (limited to 'media-gfx/fontforge/files')
-rw-r--r-- | media-gfx/fontforge/files/fontforge-20071210-parallel-build.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-gfx/fontforge/files/fontforge-20071210-parallel-build.patch b/media-gfx/fontforge/files/fontforge-20071210-parallel-build.patch new file mode 100644 index 000000000000..be9eb97a7b06 --- /dev/null +++ b/media-gfx/fontforge/files/fontforge-20071210-parallel-build.patch @@ -0,0 +1,34 @@ +Fix parallel build issues in fontforge. +http://bugs.gentoo.org/202019 +2007-12-12 Martin von Gagern + +--- fontforge-20071210/Makefile.dynamic.in ++++ fontforge-20071210/Makefile.dynamic.in +@@ -26,10 +26,10 @@ + libgunicode: + ( cd Unicode ; $(MAKE) ) + +-libgutils: ++libgutils: libgunicode + ( cd gutils ; $(MAKE) ) + +-libgdraw: ++libgdraw: libgunicode libgutils + ( cd gdraw ; $(MAKE) ) + + pos: +--- fontforge-20071210/Makefile.static.in ++++ fontforge-20071210/Makefile.static.in +@@ -24,10 +24,10 @@ + libgunicode: + ( cd Unicode ; $(MAKE) ) + +-libgutils: ++libgutils: libgunicode + ( cd gutils ; $(MAKE) ) + +-libgdraw: ++libgdraw: libgunicode libgutils + ( cd gdraw ; $(MAKE) ) + + pos: |