Skip to content

Commit a12767b

Browse files
committedJul 28, 2018
Added TMPDIR variable to the build container
Refs: packpack/packpack#97
1 parent bfecc23 commit a12767b

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed
 

‎.travis.mk

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ $(SCRIPTDIR)/packpack:
3030
$(info -------------------------------------------------------------------)
3131
$(info Patching packpak...)
3232
$(shell cd $(SCRIPTDIR)/packpack && git apply $(SCRIPTDIR)/gh-84.patch)
33+
$(shell cd $(SCRIPTDIR)/packpack && git apply $(SCRIPTDIR)/gh-97.patch)
3334
$(info -------------------------------------------------------------------)
3435

3536
.PHONY: source

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
- Added ability to build packages for Ubuntu 18.04
1010
- Added a common Debian/Ubuntu prebuild.sh script
1111

12+
### Fixed
13+
- Added `TMPDIR` variable to the build container [packpack/packpack#97](https://github.com/packpack/packpack/issues/97)
14+
1215
## [1.2.3] - 2018-03-10
1316
### Fixed
14-
- Patching packpack due to https://github.com/packpack/packpack/pull/84#issuecomment-371755389
17+
- Patching packpack due to [packpack/packpack#84](https://github.com/packpack/packpack/pull/84#issuecomment-371755389)
1518

1619
## [1.2.2] - 2017-07-10
1720
### Changed

‎gh-97.patch

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/packpack b/packpack
2+
index 6f4c80f..1659773 100755
3+
--- a/packpack
4+
+++ b/packpack
5+
@@ -155,6 +155,7 @@ docker run \
6+
--entrypoint=/build/userwrapper.sh \
7+
-e XDG_CACHE_HOME=/cache \
8+
-e CCACHE_DIR=/cache/ccache \
9+
+ -e TMPDIR=/tmp \
10+
--volume "${CACHE_DIR}:/cache" \
11+
${DOCKER_REPO}:${DOCKER_IMAGE} \
12+
make -f /pack/Makefile -C /source BUILDDIR=/build -j "$@"

0 commit comments

Comments
 (0)
Please sign in to comment.