From: <dan...@us...> - 2008-06-22 18:03:03
|
Revision: 1166 http://cegcc.svn.sourceforge.net/cegcc/?rev=1166&view=rev Author: dannybackx Date: 2008-06-22 11:03:00 -0700 (Sun, 22 Jun 2008) Log Message: ----------- Remove the function keyword for POSIX compliance. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-cegcc.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2008-06-20 18:04:30 UTC (rev 1165) +++ trunk/cegcc/src/ChangeLog 2008-06-22 18:03:00 UTC (rev 1166) @@ -1,3 +1,8 @@ +2008-06-22 Danny Backx <dan...@so...> + + * build-cegcc.sh : Remove all instances of the function keyword for + POSIX compliance. Based on info by Mosfet, see the mailing list. + 2008-06-20 Eric House <ee...@ee...> * cegcc/importlibs/defs/aygshell.def, w32api/include/aygshell.h, Modified: trunk/cegcc/src/build-cegcc.sh =================================================================== --- trunk/cegcc/src/build-cegcc.sh 2008-06-20 18:04:30 UTC (rev 1165) +++ trunk/cegcc/src/build-cegcc.sh 2008-06-22 18:03:00 UTC (rev 1166) @@ -32,7 +32,7 @@ mkdir -p ${BUILD_DIR} || exit 1 mkdir -p ${PREFIX} || exit 1 -function build_binutils() +build_binutils() { echo "" echo "BUILDING BINUTILS --------------------------" @@ -53,7 +53,7 @@ cd ${BASE_DIRECTORY} || exit 1 } -function build_import_libs() +build_import_libs() { echo "" echo "Building import libs. --------------------------" @@ -68,7 +68,7 @@ } -function copy_w32api_headers() +copy_w32api_headers() { echo "" echo "Copying w32api headers. ----------------------" @@ -82,7 +82,7 @@ cp -fp ${BASE_DIRECTORY}/w32api/include/ddk/*.h ${PREFIX}/${TARGET}/include/w32api/ddk || exit 1 } -function build_dummy_cegccdll() +build_dummy_cegccdll() { echo "" echo "Building dummy libcegcc.dll.a ----------------------" @@ -94,7 +94,7 @@ popd || exit 1 } -function build_bootstrap_gcc() +build_bootstrap_gcc() { echo "" echo "Building bootstrap gcc. ----------------------" @@ -124,7 +124,7 @@ cd ${BASE_DIRECTORY} || exit 1 } -function build_newlib() +build_newlib() { echo "" echo "Building newlib. --------------------------" @@ -144,7 +144,7 @@ cd ${BASE_DIRECTORY} || exit 1 } -function build_gcc() +build_gcc() { echo "" echo "Building full gcc. --------------------------" @@ -189,7 +189,7 @@ popd || exit 1 } -function build_cegccdll() +build_cegccdll() { echo "" echo "Building cegcc.dll --------------------------" @@ -201,7 +201,7 @@ make install || exit 1 } -function build_cegccthrddll() +build_cegccthrddll() { echo "" echo "Building cegccthrd.dll --------------------------" @@ -213,7 +213,7 @@ make install || exit 1 } -function build_libstdcppdll() +build_libstdcppdll() { echo "" echo "Building libstdc++.dll --------------------------" @@ -225,7 +225,7 @@ make install || exit 1 } -function build_gdb() +build_gdb() { echo "" echo "BUILDING GDB --------------------------" @@ -257,7 +257,7 @@ make install || exit 1 } -function build_gdbstub() +build_gdbstub() { echo "" echo "BUILDING GDB stub --------------------------" @@ -281,7 +281,7 @@ cd ${BASE_DIRECTORY} || exit 1 } -function build_profile() +build_profile() { echo "" echo "BUILDING profiling libraries --------------------------" @@ -302,7 +302,7 @@ make install || exit 1 } -function build_docs() +build_docs() { echo "" echo "INSTALLING documentation --------------------------" @@ -324,7 +324,7 @@ cp src/binutils/COPYING.NEWLIB ${PREFIX} || exit 1 } -function build_all() +build_all() { build_binutils build_import_libs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |