Skip to content

Commit 892b3fb

Browse files
committed
fix make deb error. value in control can not have empty lines
1 parent fb26394 commit 892b3fb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pack.pri

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ ARCH = `dpkg --print-architecture`
5656

5757
fakeroot.target = fakeroot
5858
fakeroot.depends = FORCE
59-
fakeroot.commands = rm -rf fakeroot && mkdir -p fakeroot/usr/share/doc/$$PACKAGE_NAME && mkdir -p fakeroot/DEBIAN
59+
fakeroot.commands = $$quote(rm -rf fakeroot && mkdir -p fakeroot/usr/share/doc/$$PACKAGE_NAME && mkdir -p fakeroot/DEBIAN)
6060
fakeroot.commands += $$quote(chmod -R 755 fakeroot) ##control dir must be 755
61+
fakeroot.commands = $$join(fakeroot.commands,$$escape_expand(\\n\\t))
6162

6263
deb.target = deb
6364
deb.depends += fakeroot

qtc_packaging/debian_generic/control

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,3 @@ Homepage: https://github.com/wang-bin/QtAV
99
Depends:
1010
Description: A media playing framework based on Qt and FFmpeg
1111
QtAV is a media playing framework based on Qt and FFmpeg. It can help you to write a player with less effort than ever before.
12-
13-

0 commit comments

Comments
 (0)