summaryrefslogtreecommitdiff
path: root/modules/webp/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-30 13:12:02 +0200
committerRémi Verschelde <rverschelde@gmail.com>2019-04-30 13:12:06 +0200
commitd52b70fb5e8e842ddcc9a57bad8e34366c0ee6d8 (patch)
treea6c12125403b60a1620066e225061535fb362e4c /modules/webp/SCsub
parente949d6c2ae64a0faecd595b7589c1690426f18a7 (diff)
SCons: Always use env.Prepend for CPPPATH
Include paths are processed from left to right, so we use Prepend to ensure that paths to bundled thirdparty files will have precedence over system paths (e.g. `/usr/include` should have lowest priority).
Diffstat (limited to 'modules/webp/SCsub')
-rw-r--r--modules/webp/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webp/SCsub b/modules/webp/SCsub
index fa3896c457..666628bb44 100644
--- a/modules/webp/SCsub
+++ b/modules/webp/SCsub
@@ -126,7 +126,7 @@ if env['builtin_libwebp']:
]
thirdparty_sources = [thirdparty_dir + "src/" + file for file in thirdparty_sources]
- env_webp.Append(CPPPATH=[thirdparty_dir, thirdparty_dir + "src/"])
+ env_webp.Prepend(CPPPATH=[thirdparty_dir, thirdparty_dir + "src/"])
env_thirdparty = env_webp.Clone()
env_thirdparty.disable_warnings()