cookutils rev 937

modules/deps (tiny edits)
author Paul Issott <paul@slitaz.org>
date Mon Jun 19 19:00:28 2017 +0100 (2017-06-19)
parents 49ff02f8d304
children 5ae6788158f0
files modules/deps
line diff
     1.1 --- a/modules/deps	Mon Jun 19 15:59:48 2017 +0300
     1.2 +++ b/modules/deps	Mon Jun 19 19:00:28 2017 +0100
     1.3 @@ -19,7 +19,7 @@
     1.4  fl_local='/home/slitaz/cache/files.list'		# local files list
     1.5  
     1.6  # recreate "combined list of all files" in the cases:
     1.7 -#   * it absent
     1.8 +#   * if absent
     1.9  #   * mirror files list has been updated
    1.10  #   * local files list has been updated
    1.11  
    1.12 @@ -42,7 +42,7 @@
    1.13  fi
    1.14  
    1.15  # recreate "database with *.so files" in the cases:
    1.16 -#   * it absent
    1.17 +#   * if absent
    1.18  #   * combined list of all files has been updated
    1.19  
    1.20  if [ ! -s $db_so   -o   $fl -nt $db_so ]; then
    1.21 @@ -53,7 +53,7 @@
    1.22  fi
    1.23  
    1.24  # recreate "database with *.a files" in the cases:
    1.25 -#   * it absent
    1.26 +#   * if absent
    1.27  #   * combined list of all files has been updated
    1.28  
    1.29  if [ ! -s $db_a -o $fl -nt $db_a ]; then
    1.30 @@ -63,7 +63,7 @@
    1.31  fi
    1.32  
    1.33  # recreate "database with *.la files" in the cases:
    1.34 -#   * it absent
    1.35 +#   * if absent
    1.36  #   * combined list of all files has been updated
    1.37  
    1.38  if [ ! -s $db_la -o $fl -nt $db_la ]; then
    1.39 @@ -73,7 +73,7 @@
    1.40  fi
    1.41  
    1.42  # recreate "database with *.pc files" in the cases:
    1.43 -#   * it absent
    1.44 +#   * if absent
    1.45  #   * combined list of all files has been updated
    1.46  
    1.47  if [ ! -s $db_pc -o $fl -nt $db_pc ]; then
    1.48 @@ -85,7 +85,7 @@
    1.49  
    1.50  
    1.51  
    1.52 -# Auxiliary function that deal with "not found" packages as well as with "repeatedly found" packages
    1.53 +# Auxiliary function that deals with "not found" packages as well as with "repeatedly found" packages
    1.54  
    1.55  outpkg() {
    1.56  	pkgs="$1"