summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsparky2010-04-26 19:51:27 (GMT)
committersparky2010-04-26 19:51:27 (GMT)
commitc8aae0a1323a1bc0fc331b3fe22113d746bee67e (patch)
tree45f00b91d80a3f018c2418332dbb2504d5a92666
parent932132fcbc28e71d10c242a30880d6b709510e44 (diff)
downloadcleanbuild-c8aae0a1323a1bc0fc331b3fe22113d746bee67e.zip
cleanbuild-c8aae0a1323a1bc0fc331b3fe22113d746bee67e.tar.gz
- inverted REBUILDDB condition (not it is called NOREBUILDDB)
svn-id: @11349
-rwxr-xr-xcleanbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/cleanbuild b/cleanbuild
index c8c5e4b..b24046a 100755
--- a/cleanbuild
+++ b/cleanbuild
@@ -12,7 +12,7 @@ ignore() { IGNORE="$IGNORE $*"; }
NODEBUG=true
CLEANAFTER=false
FORCE_UMOUNT=false
-REBUILDDB=false
+NOREBUILDDB=true
# Whatever you set here as value, consider that it may not be shorter than
# /usr/lib/debug (or /usr/src/debug) for debuginfo to work.
# You get "Only dest dir longer than base dir not supported" error otherwise.
@@ -225,7 +225,7 @@ ignore \
rebuilddb()
{
- $REBUILDDB && rpm --root=$CHDIR --rebuilddb
+ $NOREBUILDDB || rpm --root=$CHDIR --rebuilddb
}
poldek()