diff options
author | P. J. McDermott <pjm@nac.net> | 2012-01-05 03:25:19 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-01-05 03:25:19 (EST) |
commit | 966aab860fcde8139814e83e7493409b3ec169f9 (patch) | |
tree | 308ccb4571ef89b368438a123f6693ddaf064848 | |
parent | 5a6287b43e050e8cfd7719f494a2fe68538bc366 (diff) |
Add '-v' flags to 'mkdir' commands.
-rw-r--r-- | temporary-bootstrap-builder-setup.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/temporary-bootstrap-builder-setup.txt b/temporary-bootstrap-builder-setup.txt index 77244dc..50a715d 100644 --- a/temporary-bootstrap-builder-setup.txt +++ b/temporary-bootstrap-builder-setup.txt @@ -177,7 +177,7 @@ Install MPC for use by the cross-compiling GCC build. Configure and build a cross-compiling GNU Binutils. $ cp -pR ${BBL}/../../src/binutils-2.22 . - $ mkdir binutils-build + $ mkdir -v binutils-build $ cd binutils-build $ AR=ar AS=as ../binutils-2.22/configure --prefix=${BBL}/cross-tools \ > --host=${BBL_HOST} --target=${BBL_TARGET} --with-sysroot=${BBL} \ @@ -191,7 +191,7 @@ Configure and build a cross-compiling GNU Binutils. Configure and build a cross-compiling GCC. $ cp -pR ${BBL}/../../src/gcc-4.6.2 . - $ mkdir gcc-build + $ mkdir -v gcc-build $ cd gcc-build $ AR=ar LDFLAGS="-Wl,-rpath,${BBL}/cross-tools/lib" ../gcc-4.6.2/configure \ > --prefix=${BBL}/cross-tools --build=${BBL_HOST} --host=${BBL_HOST} \ |