Substitute both occurrences of install path.

This commit is contained in:
Ville Skyttä 2010-01-03 13:58:32 +02:00
parent 86070a8f60
commit eab8d5afb8

View File

@ -3,7 +3,7 @@
# Check for recent enough version of bash.
bash=${BASH_VERSION%.*}; bmajor=${bash%.*}
if [ $bmajor -ge 3 -a -r /etc/bash_completion ]; then
if [ $bmajor -ge 3 -a -r @sysconfdir@/bash_completion ]; then
# Source completion code.
. @sysconfdir@/bash_completion
fi