diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /config/recurse.mk | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'config/recurse.mk')
-rw-r--r-- | config/recurse.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/recurse.mk b/config/recurse.mk index a2e10e6a18..6afad04c2e 100644 --- a/config/recurse.mk +++ b/config/recurse.mk @@ -202,15 +202,15 @@ endif $(addprefix build/unix/stdc++compat/,target host) build/clang-plugin/host: config/export # Rust targets, and export targets that run cbindgen need -# $topobjdir/.cargo/config to be preprocessed first. Ideally, we'd only set it +# $topobjdir/.cargo/config.toml to be preprocessed first. Ideally, we'd only set it # as a dependency of the rust targets, but unfortunately, that pushes Make to # execute them much later than we'd like them to be when the file doesn't exist # prior to Make running. So we also set it as a dependency of pre-export, which # ensures it exists before recursing the rust targets and the export targets # that run cbindgen, tricking Make into keeping them early. -$(rust_targets): $(DEPTH)/.cargo/config +$(rust_targets): $(DEPTH)/.cargo/config.toml ifndef TEST_MOZBUILD -recurse_pre-export: $(DEPTH)/.cargo/config +recurse_pre-export: $(DEPTH)/.cargo/config.toml endif endif |