summaryrefslogtreecommitdiffstats
path: root/bld/install-man
blob: f4cf3dcb4813e0e3f51ae4026a6fffe86cb07d69 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for f in *; do
  if [ -d $f ]; then
     $2 -m 755 -d $1/$f/man8 
     $2 -m 644 $f/dnsmasq.8 $1/$f/man8
     echo installing $1/$f/man8/dnsmasq.8
  fi
done