Changeset 38011 in webkit


Ignore:
Timestamp:
Oct 30, 2008 2:22:38 PM (15 years ago)
Author:
alp@webkit.org
Message:

2008-10-30 Alp Toker <alp@nuanti.com>

https://bugs.webkit.org/show_bug.cgi?id=19395
doltlibtool bug with bash 3.0

autotools dolt build fix for bash version 3.0 and older. Remove
concatenation syntax from doltlibtool to support the older versions
which don't have '+='.

  • acinclude.m4:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r37996 r38011  
     12008-10-30  Alp Toker  <alp@nuanti.com>
     2
     3        https://bugs.webkit.org/show_bug.cgi?id=19395
     4        doltlibtool bug with bash 3.0
     5
     6        autotools dolt build fix for bash version 3.0 and older. Remove
     7        concatenation syntax from doltlibtool to support the older versions
     8        which don't have '+='.
     9
     10        * acinclude.m4:
     11
    1122008-10-30  Alp Toker  <alp@nuanti.com>
    213
  • trunk/acinclude.m4

    r35622 r38011  
    158158        --mode=compile) modeok=true ;;
    159159        --tag=CC|--tag=CXX) tagok=true ;;
    160         *) args+=("$arg")
     160        *) args@<:@${#args[@]}@:>@="$arg" ;;
    161161    esac
    162162done
Note: See TracChangeset for help on using the changeset viewer.