[Cryptech-Commits] [releng/alpha] branch master updated: Fix generated Debian package names ("_" is illegal).

git at cryptech.is git at cryptech.is
Sun Jul 15 01:54:22 UTC 2018


This is an automated email from the git hooks/post-receive script.

sra at hactrn.net pushed a commit to branch master
in repository releng/alpha.

The following commit(s) were added to refs/heads/master by this push:
     new 624bff7  Fix generated Debian package names ("_" is illegal).
624bff7 is described below

commit 624bff7124831b90597122e868a9b4586af8d56d
Author: Rob Austein <sra at hactrn.net>
AuthorDate: Sat Jul 14 21:52:53 2018 -0400

    Fix generated Debian package names ("_" is illegal).
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ccc61fd..3666b5f 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ GIT_BRANCHES	 := $(filter-out HEAD,$(sort $(notdir $(shell git for-each-ref --fo
 # other package names (constructed on other branches) with which this
 # one conflicts.
 
-PACKAGE_BRANCH	  = ${PACKAGE_BASE_NAME}$(and $(filter-out master,$(1)),-$(1))
+PACKAGE_BRANCH	  = ${PACKAGE_BASE_NAME}$(and $(filter-out master,$(1)),-$(subst _,-,$(1)))
 PACKAGE_NAME	 := $(call PACKAGE_BRANCH,${GIT_BRANCH})
 PACKAGE_CONFLICT := $(foreach I,$(filter-out ${GIT_BRANCH},${GIT_BRANCHES}),$(call PACKAGE_BRANCH,${I}))
 PACKAGE_VERSION  := ${PACKAGE_BASE_VERSION}.${GIT_VERSION}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Commits mailing list