about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2006-08-27 17:40:04 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2006-08-27 17:40:04 +0000
commitdfc8248073c20d37ed32a8d6a7e4296ecbd49ff2 (patch)
treef7a00fdf31b98852063ae5c5ab9d2fc4ea4865b0 /pkgs/os-specific
parentcdfc9e4b0c9d7484422d19a0f29c09c7629f121e (diff)
fix some compilation/installation issues with e2fsprogs.
svn path=/nixpkgs/trunk/; revision=6275
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/e2fsprogs/builder.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/e2fsprogs/builder.sh b/pkgs/os-specific/linux/e2fsprogs/builder.sh
index 07a6d756dd09e..fa4d2c98859d4 100644
--- a/pkgs/os-specific/linux/e2fsprogs/builder.sh
+++ b/pkgs/os-specific/linux/e2fsprogs/builder.sh
@@ -2,7 +2,14 @@ source $stdenv/setup
 
 installPhase() {
    make install
-   cd lib/uuid; make install
+   # oh this is fugly and should actually be fixed in e2fsprogs
+   ensureDir $out/man/man3
+   make -C lib/blkid install
+   make -C lib/e2p install
+   make -C lib/et install
+   make -C lib/ext2fs install
+   make -C lib/ss install
+   make -C lib/uuid install
 }
 
 installPhase=installPhase