summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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