freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] configure: Use string comparison for di


From: Werner Lemberg (@wl)
Subject: [Git][freetype/freetype][master] configure: Use string comparison for directory inodes.
Date: Mon, 18 Oct 2021 19:06:38 +0000

Werner Lemberg pushed to branch master at FreeType / FreeType

Commits:

1 changed file:

Changes:

  • configure
    ... ... @@ -93,7 +93,7 @@ fi
    93 93
     inode_src=`ls -id $abs_ft2_dir | awk '{print $1}'`
    
    94 94
     inode_dst=`ls -id $abs_curr_dir | awk '{print $1}'`
    
    95 95
     
    
    96
    -if test $inode_src -ne $inode_dst; then
    
    96
    +if test $inode_src != $inode_dst; then
    
    97 97
       if test ! -d docs; then
    
    98 98
         mkdir docs
    
    99 99
         echo "Copying documentation assets"
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]