Submitter | Pierre-Yves David |
---|---|
Date | May 8, 2015, 9:29 p.m. |
Message ID | <554D2AC4.6060508@ens-lyon.org> |
Download | mbox | patch |
Permalink | /patch/8985/ |
State | Accepted |
Commit | 56c64c91b42937759dfced7ca551b1d6a34a522c |
Delegated to: | Augie Fackler |
Headers | show |
Comments
On May 8, 2015, at 5:29 PM, Pierre-Yves David <pierre-yves.david@ens-lyon.org> wrote:
> 2) the machine have no gcc installed and were unable to retrieve version number
which machine? the base machine, or the docker image? If it’s the latter, we should fix that.
On 05/09/2015 03:16 PM, Augie Fackler wrote: > > On May 8, 2015, at 5:29 PM, Pierre-Yves David <pierre-yves.david@ens-lyon.org> wrote: > >> 2) the machine have no gcc installed and were unable to retrieve version number > > which machine? the base machine, or the docker image? If it’s the latter, we should fix that. The base machine.
On May 9, 2015, at 9:41 PM, Pierre-Yves David <pierre-yves.david@ens-lyon.org> wrote: > > > On 05/09/2015 03:16 PM, Augie Fackler wrote: >> >> On May 8, 2015, at 5:29 PM, Pierre-Yves David <pierre-yves.david@ens-lyon.org> wrote: >> >>> 2) the machine have no gcc installed and were unable to retrieve version number >> >> which machine? the base machine, or the docker image? If it’s the latter, we should fix that. > > The base machine. That gives me the thought that we should probably take care in the packaging scripts to ensure we never accidentally build packages with --pure. > > -- > Pierre-Yves David
Patch
diff --git a/contrib/packagelib.sh b/contrib/packagelib.sh --- a/contrib/packagelib.sh +++ b/contrib/packagelib.sh @@ -1,8 +1,8 @@ -function gethgversion() { +gethgversion() { make clean - make local + make local || make local PURE=--pure HG="$PWD/hg" $HG version > /dev/null || { echo 'abort: hg version failed!'; exit 1 ; }