Skip to content

Commit

Permalink
Merge pull request #51 from freedomofpress/fix-regex
Browse files Browse the repository at this point in the history
Correctly identify metapackage for server builds
  • Loading branch information
rocodes authored Jun 3, 2024
2 parents 32dae88 + 1a7a0d8 commit 31e8585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ifneq (,$(filter-out parallel=1,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
endif

# Get the metapackage name by listing the packages from d/control and
# picking the only one that starts with SD
METAPACKGE := $(shell dh_listpackages | grep "securedrop")
# picking the only one that starts with "securedrop"
METAPACKGE := $(shell dh_listpackages | grep "^securedrop")

.PHONY: binary binary-indep binary-arch
binary: binary-arch binary-indep
Expand Down

0 comments on commit 31e8585

Please sign in to comment.