From e2c30f15e4dbf5f9462ff07203dba16af12e0b5d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 17 Jun 2005 17:06:14 +0000 Subject: * Fix zip (INSTALL variable not defined in the makefile!). svn path=/nixpkgs/trunk/; revision=3198 --- pkgs/tools/archivers/zip/builder.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'pkgs/tools/archivers/zip') diff --git a/pkgs/tools/archivers/zip/builder.sh b/pkgs/tools/archivers/zip/builder.sh index 04fb0ec967f8..16a124bd37cb 100644 --- a/pkgs/tools/archivers/zip/builder.sh +++ b/pkgs/tools/archivers/zip/builder.sh @@ -1,6 +1,7 @@ -. $stdenv/setup || exit 1 +. $stdenv/setup -tar xvfz $src || exit 1 -cd zip-* || exit 1 -make -f unix/Makefile generic || exit 1 -make -f unix/Makefile prefix=$out install || exit 1 +makeFlags="-f unix/Makefile generic" + +installFlags="-f unix/Makefile prefix=$out INSTALL=cp" + +genericBuild -- cgit 1.4.1