summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-09-12 15:11:15 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-09-12 15:11:15 +0000
commitd4074d26276b9a2d452563dbf57ed497afa7b710 (patch)
tree465403670a98cf0d027eec06acb02ed11f63218a
parent62bd0f6702118e955134d18b1abb31f2cbd0b368 (diff)
downloadquilt-d4074d26276b9a2d452563dbf57ed497afa7b710.tar.gz
- scripts/inspect.in: Run the RPM %prep section in /var/tmp and
not in /tmp: the sources can become large.
-rw-r--r--quilt.changes6
-rw-r--r--scripts/inspect.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/quilt.changes b/quilt.changes
index 7ad3501..0f7a470 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Sun Sep 12 17:08:31 CEST 2004 - agruen@suse.de
+
+- scripts/inspect.in: Run the RPM %prep section in /var/tmp and
+ not in /tmp: the sources can become large.
+
+-------------------------------------------------------------------
Wed Aug 25 13:40:39 CEST 2004 - agruen@suse.de
- Refresh command: recognize and ignore header lines generated by
diff --git a/scripts/inspect.in b/scripts/inspect.in
index d77b375..b32a8b4 100644
--- a/scripts/inspect.in
+++ b/scripts/inspect.in
@@ -37,7 +37,7 @@ then
fi
sourcedir=${specfile%/*}
-tmpdir="$(gen_tempfile -d ${TMPDIR-/tmp}/${0##*/})"
+tmpdir="$(gen_tempfile -d ${TMPDIR-/var/tmp}/${0##*/})"
mkdir -p $tmpdir || exit 1
trap "rm -rf $tmpdir" EXIT
mkdir -p $tmpdir/build