sc: filter: html: fix missing color scale conditional format
[LibreOffice.git] / external / firebird / 0001-extern-cloop-Missing-dependency-of-BIN_DIR-cloop-on-.patch.1
blob816f65376a0b48f5000d22b989068898a6011764
1 From e594cf4c8590bd75a544860b472a5bbf6d5a3d0e Mon Sep 17 00:00:00 2001
2 From: Stephan Bergmann <sbergman@redhat.com>
3 Date: Thu, 3 Dec 2020 13:56:34 +0100
4 Subject: [PATCH] extern/cloop: Missing dependency of $(BIN_DIR)/cloop on
5  $(BIN_DIR)
7 When building Firebird 3.0.7 as part of LibreOffice, I saw it fail once (at
8 <https://ci.libreoffice.org/job/gerrit_linux_clang_dbgutil/74624/>) with
10 [...]
11 > config.status: creating gen/Makefile.extern.editline
12 > config.status: creating src/include/gen/autoconfig.auto
13 > config.status: executing libtool commands
16 > The Firebird3 package has been configured with the following options:
18 >                     Raw devices : enabled
19 >                    Service name : gds_db
20 >                    Service port : 3050
21 >                    GPRE modules : c_cxx.cpp
23 >                     Install Dir : /usr/local/firebird
25 > mkpar.c:182:2: warning: add explicit braces to avoid dangling else [-Wdangling-else]
26 >         else
27 >         ^
28 > 1 warning generated.
29 > main.o: In function `create_file_names':
30 > main.c:(.text+0x976): warning: the use of `mktemp' is dangerous, better use `mkstemp'
31 > /usr/bin/ld: cannot open output file /home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/UnpackedTarball/firebird/gen/Debug/cloop/release/bin/cloop: No such file or directory
32 > clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
33 > Makefile:84: recipe for target '/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/UnpackedTarball/firebird/gen/Debug/cloop/release/bin/cloop' failed
34 > make[6]: *** [/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/UnpackedTarball/firebird/gen/Debug/cloop/release/bin/cloop] Error 1
35 > make[6]: Target 'all' not remade because of errors.
36 > Makefile:130: recipe for target 'extern' failed
37 > make[5]: *** [extern] Error 2
38 > Makefile:181: recipe for target 'master_process' failed
39 > make[4]: *** [master_process] Error 2
40 > Makefile:72: recipe for target 'Debug' failed
41 > make[3]: *** [Debug] Error 2
42 > Makefile:6: recipe for target 'Debug' failed
43 > make[2]: *** [Debug] Error 2
44 > /home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/external/firebird/ExternalProject_firebird.mk:29: recipe for target '/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/ExternalProject/firebird/build' failed
45 > make[1]: *** [/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/workdir/ExternalProject/firebird/build] Error 1
46 [...]
48 (cherry picked from commit 8e9c48a94659d0c8ac80f716d321b934d47bbed1)
49 ---
50  extern/cloop/Makefile | 1 +
51  1 file changed, 1 insertion(+)
53 diff --git a/extern/cloop/Makefile b/extern/cloop/Makefile
54 index 6bc6af41a1..811711fcab 100644
55 --- a/extern/cloop/Makefile
56 +++ b/extern/cloop/Makefile
57 @@ -80,6 +80,7 @@ $(BIN_DIR)/cloop: \
58         $(OBJ_DIR)/cloop/Lexer.o \
59         $(OBJ_DIR)/cloop/Parser.o \
60         $(OBJ_DIR)/cloop/Main.o \
61 +       | $(BIN_DIR)
63         $(LD) $^ -o $@
65 -- 
66 2.28.0