about summary refs log tree commit diff
path: root/pkgs/development/tools/profiling
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-03-30 20:22:54 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-03-30 20:22:54 +0000
commit762d1843994aa3efae9459b25e4cbd575bd1bd59 (patch)
treed2dbbc1d6b42de44711776c6b10ae1b50f11ffdb /pkgs/development/tools/profiling
parent0edebf5d8455cf6aecce2d65b9145f0f5ab4e868 (diff)
downloadnixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar.gz
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar.bz2
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar.lz
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar.xz
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.tar.zst
nixlib-762d1843994aa3efae9459b25e4cbd575bd1bd59.zip
Made oprofile not to build shared libs. This allows building on x86_64.
svn path=/nixpkgs/trunk/; revision=14795
Diffstat (limited to 'pkgs/development/tools/profiling')
-rw-r--r--pkgs/development/tools/profiling/oprofile/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix
index fd6dc825d1eb..c267b8f47fd3 100644
--- a/pkgs/development/tools/profiling/oprofile/default.nix
+++ b/pkgs/development/tools/profiling/oprofile/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   # FIXME: Add optional Qt support.
   buildInputs = [ binutils popt makeWrapper gawk which gnugrep ];
 
-  configureFlags = "--with-kernel-support";
+  configureFlags = "--with-kernel-support --disable-shared";
 
   postInstall = ''
     wrapProgram "$out/bin/opcontrol"					\
@@ -43,4 +43,4 @@ stdenv.mkDerivation rec {
     license = "GPLv2";
     homepage = http://oprofile.sourceforge.net/;
   };
-}
\ No newline at end of file
+}