version 1.1, 2007/10/02 00:12:19
|
version 1.3, 2007/10/04 17:37:44
|
Line 72 if ($CHKLIBS == "no") then |
|
Line 72 if ($CHKLIBS == "no") then |
|
mkdir -p man/man3 | mkdir -p man/man3 |
endif | endif |
cd man/man1 | cd man/man1 |
find ../.. -path '../../man/man1' -prune -o -path '*/man/man1/*' -exec ln -s {} . \; |
find ../.. -path '../../man/man1' -prune -o -path '*/man/man1/*.1' -exec ln -s {} . \; |
cd ../../man/man3 | cd ../../man/man3 |
find ../.. -path '../../man/man3' -prune -o -path '*/man/man3/*' -exec ln -s {} . \; |
find ../.. -path '../../man/man3' -prune -o -path '*/man/man3/*.3' -exec ln -s {} . \; |
cd ../.. | cd ../.. |
echo "done" | echo "done" |
| |
Line 93 if ($CHKLIBS == "no") then |
|
Line 93 if ($CHKLIBS == "no") then |
|
mkdir scripts | mkdir scripts |
endif | endif |
cd scripts | cd scripts |
find ../src/base/sums/scripts -mindepth 1 \( -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; |
|
|
# Sums scripts |
|
find ../src/base/sums/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; |
|
|
|
# Util scripts |
|
find ../src/base/util/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; |
|
|
|
|
cd .. | cd .. |
echo "done" | echo "done" |
echo | echo |