From 7800af8c28fcaea89f1b0370aa21a72c24efc19d Mon Sep 17 00:00:00 2001
From: Nick White <git@njw.me.uk>
Date: Tue, 2 Jun 2009 00:33:51 +0100
Subject: Reverted to old method of copylower

New method didn't take into account the directory to put the file in.
However Tasos said this method didn't work for him...
---
 includes/generic-includes.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/generic-includes.sh b/includes/generic-includes.sh
index 97988d5..ac62dd2 100644
--- a/includes/generic-includes.sh
+++ b/includes/generic-includes.sh
@@ -143,7 +143,7 @@ function copylower
 	# usage: copylower source destination
 	if [ -d "$1" ]; then
 		for filename in $(find "$1" -type f); do
-			lowerpath="$(basename $filename |tr A-Z a-z)"
+			lowerpath="$(echo $filename|gawk -F "$1" '{print $2}'|tr A-Z a-z)"
 			cp -f "$filename" "$2/$lowerpath" || die
 		done
 	elif [ -f "$1" ]; then
-- 
cgit v1.2.3