From cceebcfed1162804ab0413d139644872110468ee Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 21 Jan 2008 02:12:05 +0000 Subject: [PATCH] Fix: Correction script generation package --- build/makepack-dolibarrmodule.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/makepack-dolibarrmodule.pl b/build/makepack-dolibarrmodule.pl index 9b9ed085777..098b9647d25 100644 --- a/build/makepack-dolibarrmodule.pl +++ b/build/makepack-dolibarrmodule.pl @@ -213,8 +213,8 @@ if ($nboftargetok) { if ($target eq 'TGZ') { unlink $FILENAMETGZ.tgz; - print "Compress $BUILDROOT/htdocs into $FILENAMETGZ.tgz...\n"; - $cmd="tar --directory \"$BUILDROOT\" -czvf \"$FILENAMETGZ.tgz\" htdocs"; + print "Compress $BUILDROOT/* into $FILENAMETGZ.tgz...\n"; + $cmd="tar --directory \"$BUILDROOT\" -czvf \"$FILENAMETGZ.tgz\" ."; $ret=`$cmd`; if ($OS =~ /windows/i) { print "Move $FILENAMETGZ.tgz to $DESTI/$FILENAMETGZ.tgz\n";