From 2e9433d58d4e03b98981a63a1fac08d038840085 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 31 Jan 2009 03:38:58 +0100 Subject: Removing shell specific extensions and call of scripts/config and scripts/clean, thanks to Tzafrir Cohen . --- helpers/lh_clean | 4 ++-- helpers/lh_config | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/lh_clean b/helpers/lh_clean index b4cf122..2507424 100755 --- a/helpers/lh_clean +++ b/helpers/lh_clean @@ -10,9 +10,9 @@ set -e # Read meta config -if [ "${1}" != "autoconfig" ] && [ -e scripts/clean.sh ] +if [ "${1}" != "autoconfig" ] && [ -x scripts/clean ] then - sh scripts/clean.sh ${@} + ./scripts/clean ${@} else shift fi diff --git a/helpers/lh_config b/helpers/lh_config index a752f50..ff33de9 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -10,9 +10,9 @@ set -e # Read meta config -if [ "${1}" != "autoconfig" ] && [ -e scripts/config.sh ] +if [ "${1}" != "autoconfig" ] && [ -x scripts/config ] then - sh scripts/config.sh ${@} + ./scripts/config ${@} else shift fi -- cgit v1.0