blob: 2871fc7593a23a0d6b1bc8b89afa4c1a07f944d8 [file] [log] [blame]
#!/bin/bash
if [ `uname` = "Linux" ] ; then
p=$2
else
# make sure it picks up the cygwin find, not the ms dos one
PATH="/usr/local/bin:/usr/bin:$PATH"
p=`cygpath $2`
fi
mkdir $p
mkdir $p/openssl
# copy only the symbolic links into the shared dir ($2)
find $1 -type l -exec cp -L \{\} $p/openssl \;