summaryrefslogtreecommitdiffstats
path: root/external/firebird/firebird-cygwin-msvc-warnings.patch
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-09-07 08:33:45 +0200
committerCaolán McNamara <caolanm@redhat.com>2021-09-13 20:39:08 +0200
commit7d2219c06c69e35785282c4183029286f17c3f11 (patch)
tree9d26ab34f92acd8bc136f6831cd1973f447ae7bd /external/firebird/firebird-cygwin-msvc-warnings.patch
parentExplicitly set cursor position for x11 'gen' backend, tdf#144457 follow-up (diff)
downloadcore-7d2219c06c69e35785282c4183029286f17c3f11.tar.gz
core-7d2219c06c69e35785282c4183029286f17c3f11.zip
exernal/firebird: extern/cloop: Missing dependencies of compilations on...
...output directories Change-Id: Iaa2b750a12e3df078b46e5bb4feeafc926e11165 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121741 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122041 Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'external/firebird/firebird-cygwin-msvc-warnings.patch')
-rw-r--r--external/firebird/firebird-cygwin-msvc-warnings.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/external/firebird/firebird-cygwin-msvc-warnings.patch b/external/firebird/firebird-cygwin-msvc-warnings.patch
index b40f94750fa9..942522439bac 100644
--- a/external/firebird/firebird-cygwin-msvc-warnings.patch
+++ b/external/firebird/firebird-cygwin-msvc-warnings.patch
@@ -180,12 +180,12 @@ diff -ur builds/posix/make.rules builds/posix/make.rules
vpath %.cpp $(SRC_DIRS)
define compile
--$1/%.o: %.c
-+$1/%.obj: %.c
+-$1/%.o: %.c | $1
++$1/%.obj: %.c | $1
$(CC) -c $$(C_FLAGS) $$< -o $$@
--$1/%.o: %.cpp
-+$1/%.obj: %.cpp
+-$1/%.o: %.cpp | $1
++$1/%.obj: %.cpp | $1
$(CXX) -c $$(CXX_FLAGS) $$< -o $$@
endef