Check-in [e3565593fd]
Overview
Comment:Updated to clean up archive files after installation
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:e3565593fdd67e9f6cde3b2e7e6ddf21c816a4e6
User & Date: rkeene on 2010-09-26 04:39:59
Other Links: manifest | tags
Context
2010-09-26
04:40
Added support for i586-mingw32msvc compilation

Added patch to allow use of AR/RANLIB environment variables check-in: 9bdee0a947 user: rkeene tags: trunk

04:39
Updated to clean up archive files after installation check-in: e3565593fd user: rkeene tags: trunk
04:39
Updated to build under i586-mingw32msvc check-in: 19963bc8da user: rkeene tags: trunk
Changes

Modified tcl/build.sh from [56c78273b3] to [5c0e5e63d0].

    66     66   
    67     67   		${MAKE:-make} install
    68     68   
    69     69   		mkdir "${OUTDIR}/lib" || exit 1
    70     70   		cp -r "${INSTDIR}/lib"/* "${OUTDIR}/lib/"
    71     71   		rm -rf "${OUTDIR}/lib/pkgconfig"
    72     72   		rm -f "${OUTDIR}"/lib/* >/dev/null 2>/dev/null
           73  +		find "${OUTDIR}" -name '*.a' | xargs rm -f >/dev/null 2>/dev/null
    73     74   
    74     75   		break
    75     76   	done
    76     77   ) || exit 1
    77     78   
    78     79   exit 0