forked from extern/shorewall_code
Have AUTOMAKE follow CONFIG_PATH
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
9c2c562bf5
commit
9fb2ab718c
@ -330,7 +330,24 @@ startup_error() {
|
|||||||
# Determine if there are config files newer than the passed object
|
# Determine if there are config files newer than the passed object
|
||||||
#
|
#
|
||||||
uptodate() {
|
uptodate() {
|
||||||
[ -f $1 ] && [ -z "$(find ${CONFDIR} -newer $1)" ]
|
[ -f $1 ] || return 1
|
||||||
|
|
||||||
|
local dir
|
||||||
|
local ifs
|
||||||
|
|
||||||
|
ifs="$IFS"
|
||||||
|
IFS=':'
|
||||||
|
|
||||||
|
for dir in $CONFIG_PATH; do
|
||||||
|
if [ -n "$(find ${dir} -newer $1)" ]; then
|
||||||
|
IFS="$ifs"
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
IFS="$ifs"
|
||||||
|
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -330,7 +330,24 @@ startup_error() {
|
|||||||
# Determine if there are config files newer than the passed object
|
# Determine if there are config files newer than the passed object
|
||||||
#
|
#
|
||||||
uptodate() {
|
uptodate() {
|
||||||
[ -f $1 ] && [ -z "$(find ${CONFDIR} -newer $1)" ]
|
[ -f $1 ] || return 1
|
||||||
|
|
||||||
|
local dir
|
||||||
|
local ifs
|
||||||
|
|
||||||
|
ifs="$IFS"
|
||||||
|
IFS=':'
|
||||||
|
|
||||||
|
for dir in $CONFIG_PATH; do
|
||||||
|
if [ -n "$(find ${dir} -newer $1)" ]; then
|
||||||
|
IFS="$ifs"
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
IFS="$ifs"
|
||||||
|
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user