mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-15 08:34:30 +02:00
8273072: Avoid using += in configure
Reviewed-by: dholmes, jiefu
This commit is contained in:
parent
b92214a8d0
commit
a033aa5a3d
4 changed files with 8 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -102,7 +102,7 @@ EXCLUDE_DIRS=" \
|
|||
"
|
||||
|
||||
for ex in $EXCLUDE_DIRS; do
|
||||
EXCLUDE_ARGS+="--exclude=$ex "
|
||||
EXCLUDE_ARGS="$EXCLUDE_ARGS --exclude=$ex"
|
||||
done
|
||||
|
||||
echo "Copying Xcode.app..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue