From 7d1e1018f4ae0a0bd25aef1987730deb170c7f03 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 28 Sep 2011 16:28:25 +0100 Subject: scripts: use OE_TMPDIR instead of TMPDIR external variable On OpenSUSE within an X session, TMPDIR is set to the system temporary directory (/tmp) which is incorrect for these scripts. Thus, change runqemu and oe-setup-rpmrepo to use OE_TMPDIR from the external environment rather than TMPDIR. Fixes [YOCTO #1530] (From OE-Core rev: 4e24c10952c7a52af7f2447595fd484692d35534) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- scripts/oe-setup-rpmrepo | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'scripts/oe-setup-rpmrepo') diff --git a/scripts/oe-setup-rpmrepo b/scripts/oe-setup-rpmrepo index 03372b6199..fc2f7a8c0c 100755 --- a/scripts/oe-setup-rpmrepo +++ b/scripts/oe-setup-rpmrepo @@ -17,9 +17,15 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +# Don't use TMPDIR from the external environment, it may be a distro +# variable pointing to /tmp (e.g. within X on OpenSUSE) +# Instead, use OE_TMPDIR for passing this in externally. +TMPDIR="$OE_TMPDIR" + function usage() { echo "Usage: $0 " - echo " : default is $TPMDIR/deploy/rpm" + echo " : default is $TMPDIR/deploy/rpm" } if [ $# -gt 1 ]; then -- cgit v1.2.3-54-g00ecf