Intégration de la branche release-1.2.3
This commit is contained in:
commit
5d02319c30
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.2.2
|
||||
1.2.3
|
||||
|
|
|
@ -1 +1 @@
|
|||
008002001
|
||||
008002002
|
||||
|
|
|
@ -173,7 +173,7 @@ function __apache_autoconf_fillcopy() {
|
|||
|
||||
if [ "$found" ]; then
|
||||
sed "$FILLSCRIPT
|
||||
$3" <"$src" >"$FILLTEMP"
|
||||
$sedscript" <"$src" >"$FILLTEMP"
|
||||
src="$FILLTEMP"
|
||||
fi
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue