arcanist: fix mtime impurity
This package would sometimes require bison, depending on file enumeration order. Adding -a flag to cp to preserve mtimes fixes this.
This commit is contained in:
parent
f1737fa646
commit
6a1cb96a5b
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ php makeWrapper flex ];
|
buildInputs = [ php makeWrapper flex ];
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
cp -R ${libphutil} libphutil
|
cp -aR ${libphutil} libphutil
|
||||||
cp -R ${arcanist} arcanist
|
cp -aR ${arcanist} arcanist
|
||||||
chmod +w -R libphutil arcanist
|
chmod +w -R libphutil arcanist
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue