dnsutils: Avoid hardlinks to man pages
[termux-packages] / detect-hardlinks.sh
index fc4a0ee..9fd4faf 100755 (executable)
@@ -2,12 +2,12 @@
 
 cd $HOME/termux
 
-for f in *; do
+for f in * */subpackages/*; do
        cd $HOME/termux
        if [ -d $f/massage ]; then
                cd $f/massage
                if [ -n "$(find . -type f -links +1)" ]; then
-                       echo "$f contains hardlink"
+                       echo "$f contains hardlink, which will not work on Android 6.0+"
                fi
        fi
 done