From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MLjob-0006Wt-BC for mharc-grub-devel@gnu.org; Tue, 30 Jun 2009 16:20:29 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MLjoZ-0006VC-HQ for grub-devel@gnu.org; Tue, 30 Jun 2009 16:20:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MLjoU-0006QB-L1 for grub-devel@gnu.org; Tue, 30 Jun 2009 16:20:26 -0400 Received: from [199.232.76.173] (port=58818 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLjoU-0006Q0-9A for grub-devel@gnu.org; Tue, 30 Jun 2009 16:20:22 -0400 Received: from sneakemail.com ([38.113.6.61]:40971 helo=sneak1.sneakemail.com) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MLjoU-0006cm-4h for grub-devel@gnu.org; Tue, 30 Jun 2009 16:20:22 -0400 Received: (qmail 6551 invoked by uid 508); 30 Jun 2009 20:20:21 -0000 Received: (sneakemail censored 26199-98075 #2); 30 Jun 2009 20:20:21 -0000 Received: (sneakemail censored 26199-98075 #1); 30 Jun 2009 20:20:21 -0000 Message-ID: <26199-98075@sneakemail.com> From: "Yves BLUSSEAU" To: grub-devel@gnu.org Content-Type: multipart/mixed; boundary=Apple-Mail-2--349449119 Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 30 Jun 2009 22:20:06 +0200 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: Patch for make install X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2009 20:20:27 -0000 --Apple-Mail-2--349449119 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Hi, this patch correct installation of headers files on Mac OSX. Bug: cp: ./include/grub/cpu is a directory (not copied). I have done a make install under OSX and linux after applying the patch. Now it works on the 2 systems. Best Regards Yves Blusseau --Apple-Mail-2--349449119 Content-Disposition: attachment; filename=make_install.patch Content-Type: application/octet-stream; x-unix-mode=0644; name="make_install.patch" Content-Transfer-Encoding: 7bit diff --git a/Makefile.in b/Makefile.in index f82566a..54a05d6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -229,7 +229,7 @@ install-local: all $(INSTALL_DATA) $$dir$$file $(DESTDIR)$(includedir)/$$dest; \ elif test -L "$$dir$$file"; then \ rm -rf $(DESTDIR)$(includedir)/$$dest && \ - cp -fP $$dir$$file $(DESTDIR)$(includedir)/$$dest; \ + cp -fR $$dir$$file $(DESTDIR)$(includedir)/$$dest; \ fi; \ done $(SHELL) $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) --Apple-Mail-2--349449119 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit --Apple-Mail-2--349449119--