diff options
| author | Bryan Hundven <bryanhundven@gmail.com> | 2015-12-05 06:45:08 -0800 |
|---|---|---|
| committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-12-05 06:45:08 -0800 |
| commit | d06cb8859608538efe02e14968623ef441dee693 (patch) | |
| tree | 88184e9765810a2df0dd5cdc0c647c00a53419c9 /scripts/build/binutils | |
| parent | 0e85151c19d7eb8b5de03f1b54ebdacc9cd1bd7c (diff) | |
| download | crosstool-ng-d06cb8859608538efe02e14968623ef441dee693.tar.gz crosstool-ng-d06cb8859608538efe02e14968623ef441dee693.tar.bz2 crosstool-ng-d06cb8859608538efe02e14968623ef441dee693.zip | |
binutils: Fix binutils manuals_install variable
In commit: 74d555b2
A regex in a parameter subsitution replaces a '#' hash symbol, but it is
not made literal '\#', so from the hash to the end of the line is a
comment.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'scripts/build/binutils')
| -rw-r--r-- | scripts/build/binutils/binutils.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binutils/binutils.sh b/scripts/build/binutils/binutils.sh index a84e6543..b3ea88ea 100644 --- a/scripts/build/binutils/binutils.sh +++ b/scripts/build/binutils/binutils.sh @@ -252,8 +252,8 @@ do_binutils_backend() { if [ "${CT_BINUTILS_LINKER_GOLD}" = "y" ]; then manuals_for+=( gold ) fi - manuals_install=( "${manuals_for[@]/#/install-pdf-}" ) - manuals_install+=( "${manuals_for[@]/#/install-html-}" ) + manuals_install=( "${manuals_for[@]/\#/install-pdf-}" ) + manuals_install+=( "${manuals_for[@]/\#/install-html-}" ) CT_DoExecLog ALL ${make} ${JOBSFLAGS} pdf html CT_DoExecLog ALL ${make} "${manuals_install[@]}" fi |
