From f29c4e9acbee95eba2c7976a1753e46bcb0edda5 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 13 Mar 2011 21:50:58 +0200 Subject: [PATCH] Add in-tree default installation directory. --- README | 3 +++ build/build-mingw32ce.sh | 2 +- dist/README | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 dist/README diff --git a/README b/README index 15ba397..e00fb15 100644 --- a/README +++ b/README @@ -12,6 +12,9 @@ git submodule update cd build ./build-mingw32ce.sh --prefix=/where/to/install +If you won't specify --prefix, it will install to cegcc-build/dist/ . + + To update afterwards: git pull diff --git a/build/build-mingw32ce.sh b/build/build-mingw32ce.sh index af1f514..a0095aa 100755 --- a/build/build-mingw32ce.sh +++ b/build/build-mingw32ce.sh @@ -12,7 +12,7 @@ export BASE_DIRECTORY # export BUILD_DIR=`pwd` -ac_default_prefix="/opt/mingw32ce" +ac_default_prefix="$BUILD_DIR/../dist" if test -z "${gcc_src}"; then export gcc_src=gcc-4.4.0 diff --git a/dist/README b/dist/README new file mode 100644 index 0000000..e25339a --- /dev/null +++ b/dist/README @@ -0,0 +1 @@ +This is the default installation directory for the toolchain built.