support du répertoire ulib dans lib/
This commit is contained in:
parent
8a320dbba3
commit
d45c4129ef
|
@ -131,7 +131,7 @@ Voulez-vous générer un script avec cette configuration?" X &&
|
||||||
-d manual
|
-d manual
|
||||||
fi
|
fi
|
||||||
if [ -z "$type" ]; then
|
if [ -z "$type" ]; then
|
||||||
if [ -d "$dir/ulib" ]; then
|
if [ -d "$dir/ulib" -o -d "$dir/lib/ulib" ]; then
|
||||||
enote "Le type de script 'system-or-local' a été sélectionné automatiquement"
|
enote "Le type de script 'system-or-local' a été sélectionné automatiquement"
|
||||||
type=system-or-local
|
type=system-or-local
|
||||||
elif [ -f /etc/ulibauto ]; then
|
elif [ -f /etc/ulibauto ]; then
|
||||||
|
@ -144,9 +144,17 @@ Voulez-vous générer un script avec cette configuration?" X &&
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$type" == system-or-local ]; then
|
if [ "$type" == system-or-local ]; then
|
||||||
|
local ulibdir
|
||||||
|
if [ -d "$dir/ulib" ]; then
|
||||||
|
ulibdir=ulib
|
||||||
|
elif [ -d "$dir/lib/ulib" ]; then
|
||||||
|
ulibdir=lib/ulib
|
||||||
|
else
|
||||||
|
ulibdir=ulib
|
||||||
|
fi
|
||||||
echo >"$file" '#!/bin/bash
|
echo >"$file" '#!/bin/bash
|
||||||
'"$modeline"'
|
'"$modeline"'
|
||||||
source "$(dirname "$0")/ulib/auto" || exit 1
|
source "$(dirname "$0")/'"$ulibdir"'/auto" || exit 1
|
||||||
#HELP_DESC="$scriptname: "
|
#HELP_DESC="$scriptname: "
|
||||||
#HELP_ARG_DESC=
|
#HELP_ARG_DESC=
|
||||||
eval "$(genparse)"
|
eval "$(genparse)"
|
||||||
|
|
Loading…
Reference in New Issue