about summary refs log tree commit diff
path: root/pkgs/applications/version-management/subversion
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
commit94d7d1fdbbb80718ff369389c1230ed77a4f7577 (patch)
treee6b513aa6e9bf61bcabcbfdfe7cd8f0dd052893f /pkgs/applications/version-management/subversion
parent2a699fe5fb15cd68473f59d986059bdb92228b75 (diff)
downloadnixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.gz
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.bz2
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.lz
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.xz
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.zst
nixlib-94d7d1fdbbb80718ff369389c1230ed77a4f7577.zip
* Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
Diffstat (limited to 'pkgs/applications/version-management/subversion')
-rw-r--r--pkgs/applications/version-management/subversion/1.5.nix2
-rw-r--r--pkgs/applications/version-management/subversion/1.6.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/subversion/1.5.nix b/pkgs/applications/version-management/subversion/1.5.nix
index 1cf1b6e915fd..e2b85bf1d49a 100644
--- a/pkgs/applications/version-management/subversion/1.5.nix
+++ b/pkgs/applications/version-management/subversion/1.5.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = ''
     --disable-keychain
-    ${if static then "--disable-shared --enable-all-static" else "--disable-static"}
+    ${if static then "--disable-shared --enable-all-static" else ""}
     ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
     ${if httpServer then "--with-apxs=${httpd}/bin/apxs" else "--without-apxs"}
     ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
diff --git a/pkgs/applications/version-management/subversion/1.6.nix b/pkgs/applications/version-management/subversion/1.6.nix
index b2ee89232f13..6d40142c4bc1 100644
--- a/pkgs/applications/version-management/subversion/1.6.nix
+++ b/pkgs/applications/version-management/subversion/1.6.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = ''
     --disable-keychain
-    ${if static then "--disable-shared --enable-all-static" else "--disable-static"}
+    ${if static then "--disable-shared --enable-all-static" else ""}
     ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
     ${if httpServer then "--with-apxs=${httpd}/bin/apxs" else "--without-apxs"}
     ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}