Intégration de la branche release-1.2.3

This commit is contained in:
Jephté Clain 2015-04-20 17:44:38 +04:00
commit 5d02319c30
5 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
## Version 1.2.3 du 20/04/2015-17:43
Correction d'un bug avec la copie des fichiers
d3ab6b8 bug
7e0d44b cosmetic
## Version 1.2.2 du 20/04/2015-01:16
## Version 1.2.1 du 20/04/2015-01:15

View File

@ -1 +1 @@
1.2.2
1.2.3

View File

@ -1 +1 @@
008002001
008002002

View File

@ -173,7 +173,7 @@ function __apache_autoconf_fillcopy() {
if [ "$found" ]; then
sed "$FILLSCRIPT
$3" <"$src" >"$FILLTEMP"
$sedscript" <"$src" >"$FILLTEMP"
src="$FILLTEMP"
fi

View File

@ -64,7 +64,9 @@ function copy_replace() {
fi
local r=0
if cp "$src" "$dest"; then
[ -n "$3" ] && chmod "$3" "$dest" || r=$?
if [ -n "$3" ]; then
chmod "$3" "$dest" || r=$?
fi
fi
return $r
}