diff --git a/CHANGES.txt b/CHANGES.txt index 518ef35..2adc23e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/VERSION.txt b/VERSION.txt index 23aa839..0495c4a 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.2.2 +1.2.3 diff --git a/lib/ulib/.ulibver b/lib/ulib/.ulibver index b7b3d8b..d238bd3 100644 --- a/lib/ulib/.ulibver +++ b/lib/ulib/.ulibver @@ -1 +1 @@ -008002001 +008002002 diff --git a/lib/ulib/apache.tools b/lib/ulib/apache.tools index b2afcfd..c7353e4 100644 --- a/lib/ulib/apache.tools +++ b/lib/ulib/apache.tools @@ -173,7 +173,7 @@ function __apache_autoconf_fillcopy() { if [ "$found" ]; then sed "$FILLSCRIPT -$3" <"$src" >"$FILLTEMP" +$sedscript" <"$src" >"$FILLTEMP" src="$FILLTEMP" fi diff --git a/lib/ulib/install b/lib/ulib/install index 88db091..89de2fc 100644 --- a/lib/ulib/install +++ b/lib/ulib/install @@ -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 }