Skip to content

Commit 25ca3ce

Browse files
authored
Merge pull request syslog-ng#5041 from HofiOne/Fix-release-targz-build-issues
Fix release targz build issues
2 parents 7f1172e + 73adb55 commit 25ca3ce

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Makefile.am

+5
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,11 @@ local-check:
162162
TESTS="${current_tests} ${subdir_tests}"
163163
endif
164164

165+
# We use VERSION.txt, as VERSION file can cause C++ build errors on case-insensitive file-systems.
166+
# Some step(s?) still can produce or leave behind a VERSION file, clean it up before packing the final dist tar.gz file.
167+
dist-hook:
168+
rm -f VERSION
169+
165170
check: check_target_guard
166171

167172
check_target_guard:

cmake/Makefile.am

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ EXTRA_DIST += \
1313
cmake/Modules/FindFLEX.cmake \
1414
cmake/Modules/FindGettext.cmake \
1515
cmake/Modules/FindGLIB.cmake \
16+
cmake/Modules/FindGperf.cmake \
1617
cmake/Modules/FindGradle.cmake \
1718
cmake/Modules/FindgRPC.cmake \
1819
cmake/Modules/FindHiredis.cmake \
@@ -36,4 +37,5 @@ EXTRA_DIST += \
3637
cmake/Modules/ProtobufGenerateCpp.cmake \
3738
cmake/module_switch.cmake \
3839
cmake/openssl_functions.cmake \
39-
cmake/print_config_summary.cmake
40+
cmake/print_config_summary.cmake \
41+
cmake/python_build_venv.cmake

modules/afmongodb/Makefile.am

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ BUILT_SOURCES += \
4141

4242
EXTRA_DIST += \
4343
modules/afmongodb/afmongodb-grammar.ym \
44-
modules/afmongodb/CMakeLists.txt
44+
modules/afmongodb/CMakeLists.txt \
45+
modules/afmongodb/tests/CMakeLists.txt
4546

4647

4748
.PHONY: modules/afmongodb/ mod-afmongodb mod-mongodb

0 commit comments

Comments
 (0)