Skip to content

Commit

Permalink
Install all needed werks into the packages
Browse files Browse the repository at this point in the history
EDTION_SHORT is not correct, since potentially multiple make files
are executed for each edition. Therefor the edition should be fixed in
the makefiles.

CMK-21266

Change-Id: Ib87c91a112ed0a8647d565e4a6bdf6a3d913deb4
  • Loading branch information
Alex Zurhake committed Jan 21, 2025
1 parent 7aad9ca commit 68c2f9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions omd/packages/check_mk/check_mk.make
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ include ../artifacts.make

$(CHECK_MK_WERKS_PATH):
$(MKDIR) $(CHECK_MK_WORK_DIR)
$(BAZEL_CMD) build //omd:run_werks_precompile_$(EDITION_SHORT)
cp $(BAZEL_BIN)/omd/werks_precompiled_$(EDITION_SHORT) $@
$(BAZEL_CMD) build //omd:run_werks_precompile_cre
cp $(BAZEL_BIN)/omd/werks_precompiled_cre $@

$(CHECK_MK_CHANGELOG_PATH):
$(MKDIR) $(CHECK_MK_WORK_DIR)
$(BAZEL_CMD) build //omd:run_changelog_$(EDITION_SHORT)
cp $(BAZEL_BIN)/omd/changelog_$(EDITION_SHORT) $@
$(BAZEL_CMD) build //omd:run_changelog_cre
cp $(BAZEL_BIN)/omd/changelog_cre $@

# RPM/DEB build are currently working on the same working directory and would
# influence each other. Need to be cleaned up later
Expand Down

0 comments on commit 68c2f9c

Please sign in to comment.