Skip to content
Snippets Groups Projects
Commit 6cf86f8e authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Fixed the ansi-include links.

parent f46b9b25
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# $Id: Config,v 1.4 1991/09/03 22:12:52 ceder Exp $ # $Id: Config,v 1.5 1991/09/04 14:45:49 ceder Exp $
x= x=
...@@ -28,13 +28,13 @@ error) false;; ...@@ -28,13 +28,13 @@ error) false;;
ln -s ../src/include/ansi/${x} include/ansi ln -s ../src/include/ansi/${x} include/ansi
cd include/ansi cd include/ansi
cat links | while read link target; do \ cat links | while read link target; do \
rm ${link}; \ rm -f ${link}; \
ln -s ../${target-Templates}/${link} ${link}; \ ln -s ../${target:-Templates}/${link} ${link}; \
done done
cd sys cd sys
cat links | while read link target; do \ cat links | while read link target; do \
rm ${link}; \ rm -f ${link}; \
ln -s ../../${target-Templates}/sys/${link} ${link}; \ ln -s ../../${target:-Templates}/sys/${link} ${link}; \
done;; done;;
esac esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment