3
0
Fork 0
forked from mirrors/nixpkgs

ctags: never use build dir as TMP

svn path=/nixpkgs/trunk/; revision=21712
This commit is contained in:
Marc Weber 2010-05-10 14:46:17 +00:00
parent fd9d4a5747
commit e97d2900d4

View file

@ -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+";
};
}