forked from mirrors/nixpkgs
ctags: never use build dir as TMP
svn path=/nixpkgs/trunk/; revision=21712
This commit is contained in:
parent
fd9d4a5747
commit
e97d2900d4
|
@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
buildInputs = [ automake autoconf ];
|
||||
|
||||
# don't use $T(E)MP which is set to the build directory
|
||||
configureFlags="--enable-tmpdir=/tmp";
|
||||
|
||||
meta = {
|
||||
description = "Exuberant Ctags, a tool for fast source code browsing";
|
||||
|
||||
|
@ -29,4 +33,5 @@ stdenv.mkDerivation rec {
|
|||
|
||||
license = "GPLv2+";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue