From 87e78f19ad25ebca64b345f259b2e35a32a28d2f Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Thu, 30 Aug 2007 16:50:27 +0000 Subject: [PATCH] Installed size is in kb --- makedebian.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makedebian.pl b/makedebian.pl index 221d41441..1a6456c92 100755 --- a/makedebian.pl +++ b/makedebian.pl @@ -87,7 +87,7 @@ system("cd $usr_dir && chmod -R og-w ."); if ($< == 0) { system("cd $usr_dir && chown -R root:bin ."); } -$size = int(`du -sk $tmp_dir`) * 1024; +$size = int(`du -sk $tmp_dir`); # Create the control file open(CONTROL, ">$control_file");