diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-06-08 17:38:55 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-06-08 17:38:55 +0200 |
commit | f521559b96d303970f50daa2f9d64c6651861d7e (patch) | |
tree | d275763c0ead5b3d33716a4ce028edbae0532420 | |
parent | 782486e8219705249d9096c79638bd85b930522d (diff) |
do not include libapt-pkg* in apt itself, add missing dh_makeshlibs calls
-rw-r--r-- | debian/apt.install | 1 | ||||
-rwxr-xr-x | debian/rules | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/apt.install b/debian/apt.install index 979e04ce2..ba57f7efa 100644 --- a/debian/apt.install +++ b/debian/apt.install @@ -1,5 +1,4 @@ bin/apt-* usr/bin/ -bin/libapt-pkg*.so.* usr/lib/ bin/methods/* usr/lib/apt/methods/ scripts/dselect/* usr/lib/dpkg/methods/apt/ locale usr/share/ diff --git a/debian/rules b/debian/rules index 24fb3b9be..a466fbf8f 100755 --- a/debian/rules +++ b/debian/rules @@ -201,7 +201,6 @@ apt: build build-doc dh_strip -p$@ dh_compress -p$@ dh_fixperms -p$@ - dh_makeshlibs -p$@ dh_installdeb -p$@ dh_shlibdeps -p$@ -l$(CURDIR)/debian/libapt-inst2.1/usr/lib:$(CURDIR)/debian/libapt-pkg4.10/usr/lib dh_gencontrol -p$@ @@ -266,6 +265,7 @@ libapt-pkg4.10: build dh_compress -p$@ dh_fixperms -p$@ dh_installdeb -p$@ + dh_makeshlibs -p$@ dh_shlibdeps -p$@ dh_gencontrol -p$@ dh_md5sums -p$@ @@ -283,6 +283,7 @@ libapt-inst1.2: build dh_compress -p$@ dh_fixperms -p$@ dh_installdeb -p$@ + dh_makeshlibs -p$@ dh_shlibdeps -p$@ -l$(CURDIR)/debian/libapt-pkg4.10/usr/lib dh_gencontrol -p$@ dh_md5sums -p$@ |