version 1.18, 2008/03/04 20:20:00
|
version 1.19, 2008/03/06 18:22:59
|
Line 46 if ($CHKLIBS == "no") then |
|
Line 46 if ($CHKLIBS == "no") then |
|
find . -name "*.h" -exec rm {} \; | find . -name "*.h" -exec rm {} \; |
cd ../.. | cd ../.. |
endif | endif |
|
|
|
if (-d include) then |
|
cd include |
|
find . -name "*.h" -exec rm {} \; |
|
cd .. |
|
endif |
echo "done" | echo "done" |
| |
echo -n "Removing links to scripts..." | echo -n "Removing links to scripts..." |
Line 114 if ($CHKLIBS == "no") then |
|
Line 120 if ($CHKLIBS == "no") then |
|
cd base/include | cd base/include |
find .. -path '../include' -prune -o -name \*.h \( \( -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; \) | find .. -path '../include' -prune -o -name \*.h \( \( -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; \) |
cd ../.. | cd ../.. |
|
|
|
if (!(-d include)) then |
|
mkdir -p include |
|
endif |
|
cd include |
|
if (-d ../base/include) then |
|
find ../base/include -name \*.h -exec ln -s {} . \; |
|
endif |
|
cd .. |
echo "done" | echo "done" |
echo | echo |
| |