Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3017 → Rev 3016

/trunk/tools/fix_symlinks.sh
File deleted
/trunk/tools/mktmpfs.py
File deleted
Property changes:
Deleted: svn:executable
-*
\ No newline at end of property
/trunk/tools/config.py
1,6 → 1,6
#!/usr/bin/env python
#
# Copyright (c) 2006 Ondrej Palkovsky
# Copyright (c) 2006 Ondrej Palkovsky
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
/trunk/tools/cygwin_symlink_patch.sh
0,0 → 1,22
# by Alf
# This script solves malfunction of symlinks in cygwin
#
# Download sources from repository and than run this script to correct symlinks
# to be able compile project
 
 
if uname | grep 'CYGWIN' > /dev/null; then
echo "Good ... you have cygwin"
else
echo "Wrong. This script is only for cygwin"
exit
fi
for linkName in `find . ! -iwholename '.*svn*' ! -type d -print`; do
if head -n 1 $linkName | grep '^link' > /dev/null; then
linkTarget=`head -n 1 $linkName | sed 's/^link //'`
echo $linkName " -->" $linkTarget
rm $linkName
ln -s "$linkTarget" "$linkName"
fi
done