From: <ped...@us...> - 2008-09-25 12:00:45
|
Revision: 1191 http://cegcc.svn.sourceforge.net/cegcc/?rev=1191&view=rev Author: pedroalves Date: 2008-09-25 12:00:25 +0000 (Thu, 25 Sep 2008) Log Message: ----------- 2008-09-25 Pedro Alves <ped...@us...> * build-cegcc.sh (build_newlib, build_cegccdll) (build_cegccthrddll, build_stdcppdll, build_profile, build_docs): cd to BUILD_DIR on exit. * build-mingw32ce.sh (build_w32api, build_mingw): Likewise. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-cegcc.sh trunk/cegcc/src/build-mingw32ce.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2008-09-25 11:19:05 UTC (rev 1190) +++ trunk/cegcc/src/ChangeLog 2008-09-25 12:00:25 UTC (rev 1191) @@ -1,3 +1,10 @@ +2008-09-25 Pedro Alves <ped...@us...> + + * build-cegcc.sh (build_newlib, build_cegccdll) + (build_cegccthrddll, build_stdcppdll, build_profile, build_docs): + cd to BUILD_DIR on exit. + * build-mingw32ce.sh (build_w32api, build_mingw): Likewise. + 2008-09-24 Pedro Alves <ped...@us...> * build-cegcc.sh (build_gcc): Remove -j4. Modified: trunk/cegcc/src/build-cegcc.sh =================================================================== --- trunk/cegcc/src/build-cegcc.sh 2008-09-25 11:19:05 UTC (rev 1190) +++ trunk/cegcc/src/build-cegcc.sh 2008-09-25 12:00:25 UTC (rev 1191) @@ -287,7 +287,8 @@ make make install - cd ${BASE_DIRECTORY} + + cd ${BUILD_DIR} } build_cegccdll() @@ -300,6 +301,8 @@ cd ${BASE_DIRECTORY}/cegcc/cegccdll make make install + + cd ${BUILD_DIR} } build_cegccthrddll() @@ -312,6 +315,8 @@ cd ${BASE_DIRECTORY}/cegcc/cegccthrd make make install + + cd ${BUILD_DIR} } build_libstdcppdll() @@ -324,6 +329,8 @@ cd ${BASE_DIRECTORY}/cegcc/libstdc++ make make install + + cd ${BUILD_DIR} } build_profile() @@ -344,6 +351,8 @@ make make install + + cd ${BUILD_DIR} } build_docs() @@ -366,6 +375,8 @@ cp src/binutils/COPYING ${PREFIX} cp src/binutils/COPYING.LIB ${PREFIX} cp src/binutils/COPYING.NEWLIB ${PREFIX} + + cd ${BUILD_DIR} } build_all() Modified: trunk/cegcc/src/build-mingw32ce.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce.sh 2008-09-25 11:19:05 UTC (rev 1190) +++ trunk/cegcc/src/build-mingw32ce.sh 2008-09-25 12:00:25 UTC (rev 1191) @@ -218,6 +218,8 @@ make make install + + cd ${BUILD_DIR} } build_mingw() @@ -232,6 +234,8 @@ make make install + + cd ${BUILD_DIR} } build_gcc() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |