diff options
author | Michael Vogt <mvo@debian.org> | 2014-04-28 12:50:47 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-04-28 12:50:47 +0200 |
commit | 77efe478cc59fe205c35036bae8c0d5e0e6913d7 (patch) | |
tree | 292ddf183b3f38c299bd6614fbd48585aa6d00b2 /debian | |
parent | 814e1b8d623cb1e6b03c79fcdab6b20754c57038 (diff) | |
parent | 038e721ad2557fd517eae4b102cd36080f4ee6e3 (diff) |
Merge branch 'debian/sid' into ubuntu/master
Conflicts:
po/vi.po
Diffstat (limited to 'debian')
-rw-r--r-- | debian/apt.dirs | 1 | ||||
-rw-r--r-- | debian/apt.maintscript | 3 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 8 insertions, 0 deletions
diff --git a/debian/apt.dirs b/debian/apt.dirs index ecbcdbc0a..1e8b057eb 100644 --- a/debian/apt.dirs +++ b/debian/apt.dirs @@ -16,3 +16,4 @@ var/lib/apt/periodic var/log/apt usr/share/apt usr/share/bug/apt +usr/share/bash-completion/completions/ diff --git a/debian/apt.maintscript b/debian/apt.maintscript new file mode 100644 index 000000000..939769355 --- /dev/null +++ b/debian/apt.maintscript @@ -0,0 +1,3 @@ +rm_conffile /etc/apt/apt.conf.d/20changelog 1.0.3 -- "@" + + diff --git a/debian/rules b/debian/rules index 338890445..c013c3a55 100755 --- a/debian/rules +++ b/debian/rules @@ -191,6 +191,10 @@ apt: build-binary build-manpages debian/apt.install cp share/ubuntu-archive.gpg debian/$@/usr/share/$@ cp debian/apt.auto-removal.sh debian/$@/etc/kernel/postinst.d/apt-auto-removal chmod 755 debian/$@/etc/kernel/postinst.d/apt-auto-removal + # install bash completion + cp share/bash-completions/* debian/$@/usr/share/bash-completion/completions/ + # install vendor specific apt confs + find -L vendor/current -name 'apt.conf-*' | while read conf; do cp "$${conf}" "debian/$@/etc/apt/apt.conf.d/$${conf#*-}"; done # make rosetta happy and remove pot files in po/ (but leave stuff # in po/domains/* untouched) and cp *.po into each domain dir |