]> git.pld-linux.org Git - packages/cinelerra.git/blob - cinelerra-strip.patch
- updated
[packages/cinelerra.git] / cinelerra-strip.patch
1 --- cinelerra-4/global_config~  2009-07-07 13:26:09.000000000 +0300
2 +++ cinelerra-4/global_config   2009-07-07 13:33:03.659733152 +0300
3 @@ -46,6 +46,7 @@
4  
5  CC = g++
6  GCC = gcc
7 +STRIP = strip
8  
9  
10  # libraries are stored in different directories depending on CPU
11 --- cinelerra-4/plugin_config~  2009-07-07 13:26:09.000000000 +0300
12 +++ cinelerra-4/plugin_config   2009-07-07 13:33:24.239770459 +0300
13 @@ -12,7 +12,7 @@
14  
15  $(OUTPUT): $(OBJS)
16         $(LDLINKER) -o $(OUTPUT) $(OBJS) `cat ../$(OBJDIR)/l_flags`
17 -       strip $(OUTPUT)
18 +       $(STRIP) $(OUTPUT)
19  
20  
21  install:
22 --- cinelerra-1.2.1/plugins/defaulttheme/Makefile.orig  2004-05-11 18:14:51.000000000 +0200
23 +++ cinelerra-1.2.1/plugins/defaulttheme/Makefile       2004-08-22 20:38:29.715608048 +0200
24 @@ -9,7 +9,7 @@
25  
26  $(OUTPUT_THEME): $(OBJS) $(THEME_DATA)
27         $(LDLINKER) -o $(OUTPUT_THEME) $(OBJS) $(THEME_DATA)
28 -       strip $(OUTPUT_THEME)
29 +       $(STRIP) $(OUTPUT_THEME)
30  
31  
32  
33 --- cinelerra-1.1.5/plugins/microtheme/Makefile.orig    Fri Jun 21 14:35:25 2002
34 +++ cinelerra-1.1.5/plugins/microtheme/Makefile Mon Mar 24 10:23:34 2003
35 @@ -6,7 +6,7 @@
36  
37  OUTPUT_THEME: $(OBJS)
38         $(LDLINKER) -o $(OUTPUT_THEME) $(OBJS)
39 -       strip $(OUTPUT_THEME)
40 +       $(STRIP) $(OUTPUT_THEME)
41         ../../cinelerra/$(OBJDIR)/bootstrap $(OUTPUT_THEME) data/*.png
42  
43  include ../../plugin_config
44 --- cinelerra-4/cinelerra/Makefile.orig 2008-08-28 18:02:51.486128443 +0200
45 +++ cinelerra-4/cinelerra/Makefile      2008-08-28 18:13:51.234129281 +0200
46 @@ -449,7 +449,7 @@
47  # Also VFS only overrides the C library when dynamic linking is used.
48  $(OUTPUT): $(OBJS) $(DCRAW) $(FILEEXR) $(FFMPEG_OBJS) $(FILEFLAC) $(THEME_DATA) $(SNDFILE_LIB)
49         $(LINKER) `cat $(OBJDIR)/objs`
50 -       strip $(OUTPUT)
51 +       $(STRIP) $(OUTPUT)
52  
53  $(OBJDIR)/test: 
54         $(CC) -shared -o $(OBJDIR)/test.so \
55 --- cinelerra-4/plugins/suv/Makefile~   2008-09-02 14:38:09.000000000 +0300
56 +++ cinelerra-4/plugins/suv/Makefile    2009-07-07 13:39:33.106900936 +0300
57 @@ -12,7 +12,7 @@
58  
59  $(OUTPUT_THEME): $(OBJS) $(THEME_DATA)
60         $(LDLINKER) -o $(OUTPUT_THEME) $(OBJS) $(THEME_DATA)
61 -       strip $(OUTPUT_THEME)
62 +       $(STRIP) $(OUTPUT_THEME)
63  
64  
65  
66 --- cinelerra-4/plugins/chromakeyhsv/Makefile~  2008-09-02 14:38:09.000000000 +0300
67 +++ cinelerra-4/plugins/chromakeyhsv/Makefile   2009-07-07 13:39:51.163323109 +0300
68 @@ -11,7 +11,7 @@
69  
70  $(OUTPUT_): $(OBJS) $(SHADER)
71         $(LDLINKER) -o $(OUTPUT_) $(OBJS) $(SHADER)
72 -       strip $(OUTPUT_)
73 +       $(STRIP) $(OUTPUT_)
74  
75  
76  include ../../plugin_config
This page took 0.036563 seconds and 3 git commands to generate.