~ubuntu-branches/ubuntu/trusty/bash/trusty-security

« back to all changes in this revision

Viewing changes to debian/rl-libc5.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2002-04-08 20:51:41 UTC
  • Revision ID: james.westby@ubuntu.com-20020408205141-p16ukpd93kg6ce7g
Tags: 2.05a-11
* Don't mishandle negative pid in `kill' builtin (closes: #133927, #137742).
* builtins(1) doesn't document `for' (closes: #118755).
* Add /usr/share/bash_completion directory to source package specific
  completion files.
* Update to bash_completion 20020408 (v1.264).
  Closes: #133109, #139375, #139675, #134713, #141134.
* Add completion to /etc/skel/.bashrc (commented out). Closes: #138921.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# We *have* to have ld.so.1 know about the libc5-compat directories.
 
4
# Another way to do this could have been to Pre-Depend: libc5 (>= 5.4.23-4)
 
5
 
 
6
set -e
 
7
 
 
8
if ! grep -q '^/usr/lib/libc5-compat$' /etc/ld.so.conf; then
 
9
    echo /usr/lib/libc5-compat >> /etc/ld.so.conf
 
10
fi
 
11
if ! grep -q '^/lib/libc5-compat$' /etc/ld.so.conf; then
 
12
    echo /lib/libc5-compat >> /etc/ld.so.conf
 
13
fi