vapier 15/04/04 18:50:57 Modified: README.history Added: 13_all_binutils-2.18-gprof-m-o-rule.patch Log: backport upstream fix for building w/newer make
Revision Changes Path 1.5 src/patchsets/binutils/2.17/README.history file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.17/README.history?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.17/README.history?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.17/README.history?r1=1.4&r2=1.5 Index: README.history =================================================================== RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.17/README.history,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- README.history 21 Nov 2009 04:10:35 -0000 1.4 +++ README.history 4 Apr 2015 18:50:57 -0000 1.5 @@ -1,4 +1,5 @@ -1.7 [pending] +1.7 04 Apr 2015 + + 13_all_binutils-2.18-gprof-m-o-rule.patch - 42_all_012_check_ldrunpath_length.patch 1.6 1.1 src/patchsets/binutils/2.17/13_all_binutils-2.18-gprof-m-o-rule.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.17/13_all_binutils-2.18-gprof-m-o-rule.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.17/13_all_binutils-2.18-gprof-m-o-rule.patch?rev=1.1&content-type=text/plain Index: 13_all_binutils-2.18-gprof-m-o-rule.patch =================================================================== >From 253a23950d9ced1f4640d072f8b5579c7b4b24b6 Mon Sep 17 00:00:00 2001 From: Nick Clifton <[email protected]> Date: Tue, 25 Apr 2006 16:20:47 +0000 Subject: [PATCH] 2006-04-25 Masaki Muranaka <[email protected]> PR 2587 * Makefile.am: Add empty rule for .m -> .o build in order to work around bug in gmake shipped by Apple. * Makefile.in: Regenerate. --- gprof/ChangeLog | 7 +++++++ gprof/Makefile.am | 3 +++ gprof/Makefile.in | 5 ++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gprof/Makefile.am b/gprof/Makefile.am index 1b86267..a79912f 100644 --- a/gprof/Makefile.am +++ b/gprof/Makefile.am @@ -39,6 +39,9 @@ EXTRA_DIST = $(BUILT_SOURCES) bbconv.pl $(man_MANS) diststuff: $(BUILT_SOURCES) info $(man_MANS) +# This empty rule is a hack against gmake patched by Apple. +%.o:%.m + .m.c: awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \ FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \ diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 328a3da..fcebab1 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -799,6 +799,9 @@ uninstall-man: uninstall-man1 diststuff: $(BUILT_SOURCES) info $(man_MANS) +# this empry rule is a hack against gmake patched by Apple. +%.o:%.m + .m.c: awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \ FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \ -- 2.3.4
