ref: de9faa53edadecf05311f8bac0466674814644c1
parent: 986d503f4a89b13c17ddb5c1fa0cc1dc8ccc3676
author: Werner Lemberg <wl@gnu.org>
date: Mon Oct 18 17:03:38 EDT 2021
configure: Use string comparison for directory inodes. Inode values might be larger than integers supported by the shell. Fixes #1105.
--- a/configure
+++ b/configure
@@ -93,7 +93,7 @@
inode_src=`ls -id $abs_ft2_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
mkdir docs
echo "Copying documentation assets"