From de9faa53edadecf05311f8bac0466674814644c1 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 18 Oct 2021 21:03:38 +0200 Subject: [PATCH] configure: Use string comparison for directory inodes. Inode values might be larger than integers supported by the shell. Fixes #1105. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index df849718e..584e6ec38 100755 --- a/configure +++ b/configure @@ -93,7 +93,7 @@ fi 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"