base-files: fixed another shell error from 0.60.

This commit is contained in:
Juan RP 2012-05-03 10:22:53 +02:00
parent 4a3cf45601
commit 3983843fe7
2 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,6 @@ if [ -d /etc/profile.d/ ]; then
fi
# Source global bash config
if [ -n "$PS1" && -n "$BASH" && -r /etc/bashrc ]; then
if [ -n "$PS1" -a -n "$BASH" -a -r /etc/bashrc ]; then
. /etc/bashrc
fi

View File

@ -1,6 +1,6 @@
# Template file for 'base-files'
pkgname=base-files
version=0.61
version=0.62
short_desc="Void GNU/Linux base system files"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://code.google.com/p/xbps"