]> git.pld-linux.org Git - packages/glibc.git/blob - glibc-newmake.patch
- rel 8
[packages/glibc.git] / glibc-newmake.patch
1 Submitted By:            Matt Burgess <matthew_at_linuxfromscratch_dot_org>
2 Date:                    2010-07-26
3 Initial Package Version: 2.11.2
4 Upstream Status:         Not submitted
5 Origin:                  Denis Onischenko
6                          (http://www.mail-archive.com/help-make@gnu.org/msg08847.html)
7 Description:             Fixes an incompatibility with Make-3.82.
8
9 diff -Naur glibc-2.11.2.orig/manual/Makefile glibc-2.11.2/manual/Makefile
10 --- glibc-2.11.2.orig/manual/Makefile   2010-05-19 20:38:20.000000000 +0000
11 +++ glibc-2.11.2/manual/Makefile        2010-07-26 06:51:27.049899308 +0000
12 @@ -232,9 +232,13 @@
13  .PHONY: stubs
14  stubs: $(objpfx)stubs
15  endif
16 -$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%:
17 -       $(make-target-directory)
18 -       touch $@
19 +$(objpfx)stubs ../po/manual.pot:
20 +       $(make-target-directory)
21 +       touch $@
22 +
23 +$(objpfx)stamp%:
24 +       $(make-target-directory)
25 +       touch $@
26  
27  # Make the target directory if it doesn't exist, using the `mkinstalldirs'
28  # script that does `mkdir -p' even if `mkdir' doesn't support that flag.
This page took 0.025623 seconds and 3 git commands to generate.