blob: 7e7d53b1d2b40d3afa27f20dfa73f2cc5700186d (
plain)
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
43
44
45
46
|
diff --git a/Makefile b/Makefile
index f23b041..228b308 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ all: $(DEBS)
.PHONY: submodule
submodule:
ifeq ($(shell test -f "$(SRCDIR)/configure" && echo 1 || echo 0), 0)
- git submodule update --init --recursive
+ git -c protocol.file.allow=always submodule update --init --recursive
cd $(SRCDIR); meson subprojects download
endif
@@ -58,8 +58,8 @@ $(BUILDDIR): submodule
deb kvm: $(DEBS)
$(DEB_DBG): $(DEB)
$(DEB): $(BUILDDIR)
- cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
- lintian $(DEBS)
+ cd $(BUILDDIR); dpkg-buildpackage -b -us -uc -d
+# lintian $(DEBS)
sbuild: $(DSC)
sbuild $(DSC)
diff --git a/debian/rules b/debian/rules
index 51f56c5..7475b09 100755
--- a/debian/rules
+++ b/debian/rules
@@ -69,7 +69,7 @@ endif
--enable-linux-io-uring \
--enable-numa \
--enable-opengl \
- --enable-rbd \
+ --disable-rbd \
--enable-seccomp \
--enable-slirp \
--enable-spice \
@@ -156,7 +156,7 @@ binary-arch: build install
dh_installdeb
# Debian >= Buster has libglusterfs0 and lots of libgfFOO, upstream has the libs in glusterfs-common
# pass -x to dpkg-shlibdeps and specify dependencies in d/control instead
- dh_shlibdeps -- -xlibglusterfs0 -xlibgfxdr0 -xlibgfrpc0 -xlibgfdb0 -xlibgfchangelog0 -xlibgfapi0
+# dh_shlibdeps -- -xlibglusterfs0 -xlibgfxdr0 -xlibgfrpc0 -xlibgfdb0 -xlibgfchangelog0 -xlibgfapi0
dh_gencontrol
dh_md5sums
dh_builddeb
|