Blame view

buildroot/buildroot-2016.08.1/package/screen/0009-install-dir-dependency.patch 1.52 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  From: Maarten ter Huurne <maarten@treewalker.org>
  Date: Mon, 15 Sep 2014 02:27:09 +0200
  Subject: Ensure that installation dirs exist before copying files into them
  
  Since the "install_bin" target requires the installation directories
  to exist, it should depend on the "installdirs" target. The previous
  approach of having "install" depend on "installdirs" is not reliable.
  
  For example, in a parallel build, there was no guarantee that
  "installdirs" would be finished before "install_bin" runs. Also if
  the user requested only "install_bin" to be made, "installdirs" would
  be skipped altogether.
  
  Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>
  ---
   Makefile.in | 4 ++--
   1 file changed, 2 insertions(+), 2 deletions(-)
  
  diff --git a/Makefile.in b/Makefile.in
  index 860f351..f0fe08d 100644
  --- a/Makefile.in
  +++ b/Makefile.in
  @@ -82,7 +82,7 @@ screen: $(OFILES)
   	$(CC) -c -I. -I$(srcdir) $(M_CFLAGS) $(CPPFLAGS) $(DEFS) \
   	    $(OPTIONS) $(CFLAGS) $<
   
  -install_bin: .version screen
  +install_bin: .version screen installdirs
   	$(INSTALL_PROGRAM) screen $(DESTDIR)$(bindir)/$(SCREEN)
   	-chown root $(DESTDIR)$(bindir)/$(SCREEN)
   	-chmod 4755 $(DESTDIR)$(bindir)/$(SCREEN)
  @@ -94,7 +94,7 @@ endif
   	cp $(srcdir)/utf8encodings/?? $(DESTDIR)$(SCREENENCODINGS)
   
   ###############################################################################
  -install: installdirs install_bin
  +install: install_bin
   	cd doc ; $(MAKE) install
   	-if [ -d /usr/lib/terminfo ]; then \
   		PATH="$$PATH:/usr/5bin" tic ${srcdir}/terminfo/screeninfo.src; \
  -- 
  1.8.4.5