Codebase list blepvco / f83c066
debian/patches: Refresh patches. Boyuan Yang 10 months ago
3 changed file(s) with 36 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 From: Boyuan Yang <byang@debian.org>
1 Date: Fri, 16 Jun 2023 22:56:25 -0400
2 Subject: Do not use hardcode CXX
3
4 Allow cross build from source.
5
6 Bug-Debian: https://bugs.debian.org/899278
7 Author: Helmut Grohne <helmut@subdivi.de>
8 Last-Update: 2018-05-22
9 ---
10 Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/Makefile b/Makefile
14 index 5deae1e..c7fcec0 100644
15 --- a/Makefile
16 +++ b/Makefile
17 @@ -4,7 +4,7 @@ CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O3
18
19
20 blepvco.so: blepvco.o blepvco_if.o exp2ap.o minblep_tables.o
21 - g++ -shared blepvco.o blepvco_if.o exp2ap.o minblep_tables.o -o blepvco.so
22 + $(CXX) -shared blepvco.o blepvco_if.o exp2ap.o minblep_tables.o -o blepvco.so
23
24 blepvco.o: ladspaplugin.h blepvco.h minblep_tables.h
25 blepvco_if.o: ladspaplugin.h blepvco.h
0 Description: Pass the DESTDIR variable to make.
0 From: Free Ekanayaka <freee@debian.org>
1 Date: Fri, 16 Jun 2023 22:55:51 -0400
2 Subject: Pass the DESTDIR variable to make.
3
14 Author: Free Ekanayaka <freee@debian.org>
25 ---
3 Makefile | 3 ++-
6 Makefile | 3 ++-
47 1 file changed, 2 insertions(+), 1 deletion(-)
58
6 --- blepvco-0.1.0.orig/Makefile
7 +++ blepvco-0.1.0/Makefile
9 diff --git a/Makefile b/Makefile
10 index 76f127d..5deae1e 100644
11 --- a/Makefile
12 +++ b/Makefile
813 @@ -1,4 +1,5 @@
914
1015 +DESTDIR =
00 01-destdir.patch
1 0002-Do-not-use-hardcode-CXX.patch