From a43aa87150966c72e185d12c24a34b0b6d2c6879 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 15 Jan 2009 16:09:38 +0000 Subject: [PATCH] devbuild: use .devbuildrc rather than devbuild.conf --- devbuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devbuild b/devbuild index 4436602..fabdecf 100755 --- a/devbuild +++ b/devbuild @@ -14,20 +14,20 @@ program=${0##*/} # rebuild env. Those values can be overridden in either -# /etc/devbuild.conf or $HOME/.devbuild.conf +# /etc/devbuildrc or $HOME/.devbuildrc DISTFILES=/var/cache/distfiles APORTS_DIR=$HOME/aports ALPINE_DIR=$HOME/abuild # for the local project. Those values can be overridden by -# a devbuild.conf in the subprojects subdir +# a .devbuildrc in the subprojects dir PACKAGE=$(grep '^PACKAGE' Makefile | sed 's/.*=[[:blank:]]*//') VERSION=$(grep '^VERSION' Makefile | sed 's/.*=[[:blank:]]*//') SUFFIX=.tar.bz2 REPO=core # let user override the above defaults -for i in /etc/$program.conf $HOME/.$program.conf ./$program.conf; do +for i in /etc/${program}rc $HOME/.${program}rc ./.${program}rc; do if [ -f $i ]; then . $i fi