]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- tries ~/etc/builderrc before ~/.builderrc
authorSebastian Zagrodzki <sebek@zagrodzki.net>
Sat, 27 Nov 1999 16:13:53 +0000 (16:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    builder.sh -> 1.45

builder.sh

index 545e0aec71f125aa0aa27e1549894a96cf8a70ad..5645f30151b7ff600059b1636b56fbb431a51c33 100644 (file)
@@ -33,7 +33,9 @@ PACKAGE_RELEASE=""
 PACKAGE_VERSION=""
 PACKAGE_NAME=""
 
-if [ -f ~/.builderrc ]; then
+if [ -f ~/etc/builderrc ]; then
+  . ~/etc/builderrc
+elif [ -f ~/.builderrc ]; then
   . ~/.builderrc
 fi
 
This page took 0.043197 seconds and 4 git commands to generate.