configure: Use string comparison for directory inodes.
Inode values might be larger than integers supported by the shell. Fixes #1105.
This commit is contained in:
parent
986d503f4a
commit
de9faa53ed
|
@ -93,7 +93,7 @@ fi
|
||||||
inode_src=`ls -id $abs_ft2_dir | awk '{print $1}'`
|
inode_src=`ls -id $abs_ft2_dir | awk '{print $1}'`
|
||||||
inode_dst=`ls -id $abs_curr_dir | awk '{print $1}'`
|
inode_dst=`ls -id $abs_curr_dir | awk '{print $1}'`
|
||||||
|
|
||||||
if test $inode_src -ne $inode_dst; then
|
if test $inode_src != $inode_dst; then
|
||||||
if test ! -d docs; then
|
if test ! -d docs; then
|
||||||
mkdir docs
|
mkdir docs
|
||||||
echo "Copying documentation assets"
|
echo "Copying documentation assets"
|
||||||
|
|
Loading…
Reference in New Issue