summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bashrc5
-rw-r--r--rootfiles.spec31
2 files changed, 21 insertions, 15 deletions
diff --git a/bashrc b/bashrc
index a4cf8a8..e8aef9e 100644
--- a/bashrc
+++ b/bashrc
@@ -9,3 +9,8 @@ export USERNAME ENV PATH
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
+
+# enable programmable completion features
+if [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+fi
diff --git a/rootfiles.spec b/rootfiles.spec
index 7eb495c..c8ee856 100644
--- a/rootfiles.spec
+++ b/rootfiles.spec
@@ -1,16 +1,17 @@
-Summary: The basic required files for the root user's directory
-Name: rootfiles
# MODIFY IN THE CVS !!
-Version: 10.0
-Release: 1mdk
-License: Public Domain
-Group: System/Base
-Packager: David BAUDENS <baudens@mandrakesoft.com>
-
-Source: %name-%version.tar.bz2
-
-BuildRoot: %_tmppath/%name-%version-%release-root
-BuildArch: noarch
+%define name rootfiles
+%define version 9.1
+%define release 1mdk
+
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Summary: The basic required files for the root user's directory
+License: Public Domain
+Group: System/Base
+Source: %name-%version.tar.bz2
+BuildRoot: %_tmppath/%name-%version-%release-root
+BuildArch: noarch
%description
The rootfiles package contains basic required files that are placed
@@ -19,7 +20,6 @@ as the files found in the etcskel package, which are placed in regular
users' home directories.
%prep
-
%setup -q
%install
@@ -54,8 +54,9 @@ fi
%attr(0700,root,root) /root/tmp/
%changelog
-* Fri Feb 06 2004 David Baudens <baudens@mandrakesoft.com> 10.0-1mdk
-- Rebuild
+* Mon Jul 12 2004 Guillaume Rousse <guillomovitch@mandrake.org> 9.1-1mdk
+- enable bash-completion support in root .bashrc
+- spec cleanup
* Sat Nov 30 2002 Yves Duret <yves@zarb.org> 9.1-0.1mdk
- bashrc: source /etc/bashrc after PATH redefinition (for bash_completion)