summaryrefslogtreecommitdiff
path: root/waterfox
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-05-13 12:47:00 +0000
committerB Stack <bgstack15@gmail.com>2019-05-13 12:47:00 +0000
commit301625563c026ab4e94a7ed8393eff1cc0878ed2 (patch)
tree8b081f91f917e27aa201a0e9dc40b75415824fe0 /waterfox
parentMerge branch 'freefilesync-bump' into 'master' (diff)
parentWIP: waterfox: fix when clang is pulled in (diff)
downloadstackrpms-301625563c026ab4e94a7ed8393eff1cc0878ed2.tar.gz
stackrpms-301625563c026ab4e94a7ed8393eff1cc0878ed2.tar.bz2
stackrpms-301625563c026ab4e94a7ed8393eff1cc0878ed2.zip
Merge branch 'waterfox-bump' into 'master'
waterfox: fix when clang is pulled in See merge request bgstack15/stackrpms!58
Diffstat (limited to 'waterfox')
-rw-r--r--waterfox/waterfox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index 77ec533..c14f518 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -304,9 +304,9 @@ BuildRequires: pkgconfig(icu-i18n)
BuildRequires: yasm
BuildRequires: llvm
BuildRequires: llvm-devel
+%if 0%{?build_with_clang}
BuildRequires: clang
BuildRequires: clang-libs
-%if 0%{?build_with_clang}
BuildRequires: lld
BuildRequires: libstdc++-static
%if 0%{?build_with_pgo}
bgstack15