]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pakfire/patches/0002-Mount-tmp-as-a-tmpfs-into-the-build-environment.patch
python: Update to 2.7.5.
[people/ms/ipfire-3.x.git] / pakfire / patches / 0002-Mount-tmp-as-a-tmpfs-into-the-build-environment.patch
CommitLineData
eac44f69
MT
1From 4252a54980c0996a9b46ad2043aefe0910bc5da7 Mon Sep 17 00:00:00 2001
2From: Michael Tremer <michael.tremer@ipfire.org>
3Date: Tue, 5 Mar 2013 01:20:22 +0100
4Subject: [PATCH 02/19] Mount /tmp as a tmpfs into the build environment.
5
6---
7 python/pakfire/builder.py | 1 +
8 1 file changed, 1 insertion(+)
9
10diff --git a/python/pakfire/builder.py b/python/pakfire/builder.py
11index 24027d9..1cf1e8e 100644
12--- a/python/pakfire/builder.py
13+++ b/python/pakfire/builder.py
14@@ -572,6 +572,7 @@ class BuildEnviron(object):
15 ("pakfire_tmpfs", "/dev", "tmpfs", "mode=755,nosuid"),
16 ("/dev/pts", "/dev/pts", "bind", "bind"),
17 ("pakfire_tmpfs", "/run", "tmpfs", "mode=755,nosuid,nodev"),
18+ ("pakfire_tmpfs", "/tmp", "tmpfs", "mode=755,nosuid,nodev"),
19 ]
20
21 # If selinux is enabled.
22--
231.8.1.4
24