Skip to content

Commit

Permalink
fix make deb error. value in control can not have empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-bin committed Mar 16, 2014
1 parent fb26394 commit 892b3fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pack.pri
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ ARCH = `dpkg --print-architecture`

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

deb.target = deb
deb.depends += fakeroot
Expand Down
2 changes: 0 additions & 2 deletions qtc_packaging/debian_generic/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,3 @@ Homepage: https://github.com/wang-bin/QtAV
Depends:
Description: A media playing framework based on Qt and FFmpeg
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.


0 comments on commit 892b3fb

Please sign in to comment.