Fixed version of unix2dos conversion.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40179 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -131,11 +131,20 @@ dospinport(){
|
|||||||
mkdir -p $TMPFILESDIR
|
mkdir -p $TMPFILESDIR
|
||||||
|
|
||||||
copyfilelist $portfiles $APPDIR $TMPFILESDIR
|
copyfilelist $portfiles $APPDIR $TMPFILESDIR
|
||||||
|
|
||||||
|
if [ $port = "msw" ]; then
|
||||||
|
FILES=`find . -type f \( -path '*/CVS/*' -prune -o -exec distrib/scripts/is_text.sh {} \; -print \)`
|
||||||
|
echo "$FILES" > /tmp/textfiles
|
||||||
|
fi
|
||||||
|
|
||||||
pushd /tmp/wx$port
|
pushd /tmp/wx$port
|
||||||
# use DOS line endings for text files for MSW archives.
|
# use DOS line endings for text files for MSW archives.
|
||||||
if [ $port = "msw" ]; then
|
if [ $port = "msw" ]; then
|
||||||
find . -type f \( -path '*/CVS/*' -prune -o -exec $APPDIR/distrib/scripts/is_text.sh {} \; -print \)
|
pushd /tmp/wx$port/wxWidgets-$VERSION
|
||||||
|
for file in `cat /tmp/textfiles`; do
|
||||||
|
unix2dos $file
|
||||||
|
done
|
||||||
|
popd
|
||||||
fi
|
fi
|
||||||
echo "Creating wx$portname-$VERSION.zip..."
|
echo "Creating wx$portname-$VERSION.zip..."
|
||||||
zip $ZIPFLAGS -r -9 $APPDIR/deliver/wx$portname-$VERSION.zip .
|
zip $ZIPFLAGS -r -9 $APPDIR/deliver/wx$portname-$VERSION.zip .
|
||||||
|
Reference in New Issue
Block a user