diff options
author | biao716.wang <biao716.wang@samsung.com> | 2020-04-05 20:01:57 +0900 |
---|---|---|
committer | biao716.wang <biao716.wang@samsung.com> | 2020-04-05 20:13:34 +0900 |
commit | e34479197997ab4f8e3644aa61101e9187960fa8 (patch) | |
tree | f808a004dd80b2b3c262f6c52bf17be037cca4b0 | |
parent | a5fc02e333219a787dfb5fe5a505546a018afd1b (diff) | |
download | litmus-submit/trunk/20201029.114030.tar.gz litmus-submit/trunk/20201029.114030.tar.bz2 litmus-submit/trunk/20201029.114030.zip |
Fix build error in Ubuntu 18.04:HEADsubmit/trunk/20201029.132130submit/trunk/20201029.114030submit/trunk/20200615.140020submit/trunk/20200612.191020submit/trunk/20200612.185510submit/trunk/20200612.182210submit/trunk/20200612.180310submit/trunk/20200612.131210submit/trunk/20200409.202020accepted/tools/devbase/tools/legacy/20240424.050647accepted/tools/devbase/tools/legacy/20240423.040706accepted/tools/devbase/tools/legacy/20240422.110823masterdevelaccepted/tools_devbase_tools_legacy
fakeroot debian/rules clean
[ 75s] dh clean --with python3 --buildsystem=pybuild
[ 75s] dh: unable to load addon python3: Can't locate Debian/Debhelper/Sequence/python3.pm in @INC
(you may need to install the Debian::Debhelper::Sequence::python3 module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.26.1 /usr/local/share/perl/5.26.1
/usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at (eval 7) line 1.
Reason: It looks like python3 used to depend on dh-python, but it no longer does. I'll add dh-python explicitly as a build dependency.
Change-Id: If687c0617f215124cfa1cbb344e9a410286b9bc3
Signed-off-by: biao716.wang <biao716.wang@samsung.com>
-rw-r--r-- | debian/control | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/control b/debian/control index 2d2d43c..3db0d82 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: litmus Section: devel Priority: optional Maintainer: Donghoon Shin <dhs.shin@samsung.com> -Build-Depends: debhelper (>= 8.0.0), python3 (>= 3.3), python3-setuptools (>= 3.3) +Build-Depends: debhelper (>= 8.0.0), dh-python, python3 (>= 3.3), python3-setuptools (>= 3.3) Standards-Version: 3.9.4 Homepage: http://www.tizen.org X-Python-Version: >= 3.3 |