mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 01:46:14 +00:00
Don't use += to append to a shell variable.
POSIX only requires "=" to be supported; "+=" works in bash but not in dash. Signed-off-by: Adam Sampson <ats@offog.org> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
parent
432a4b4881
commit
b7d80d1047
@ -203,7 +203,7 @@ AC_DEFINE_UNQUOTED(TARGET_CPU_PLATFORM, ["$host_cpu"], [Target platform])
|
||||
|
||||
files="broadwell cherryview haswell ivybridge sandybridge valleyview"
|
||||
for file in $files; do
|
||||
QUICK_DUMP_EXTRA_DIST+="$file `tr '\n' ' ' < tools/quick_dump/$file`"
|
||||
QUICK_DUMP_EXTRA_DIST="$QUICK_DUMP_EXTRA_DIST $file `tr '\n' ' ' < tools/quick_dump/$file`"
|
||||
done
|
||||
AC_SUBST(QUICK_DUMP_EXTRA_DIST)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user