From c70412bcfa677606bc9a2fd02f2d2fe9372e1138 Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Sat, 22 Mar 2008 18:05:42 +0000 Subject: [PATCH] lh_binary_debian-installer: Remove "local"-oriented bashisms Signed-off-by: Chris Lamb --- helpers/lh_binary_debian-installer | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 5d26fe90f..df16f9809 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -113,8 +113,11 @@ INITRD_GI="gtk/initrd.gz" DESTDIR_GI="${DESTDIR}/gtk" Install_file() { - local FILE="${1}" - local TARGET="${2}" + local FILE + FILE="${1}" + + local TARGET + TARGET="${2}" SOURCE="$(dpkg -f ${FILE} Source | awk '{ print $1 }')"