mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Debian packaging: Corrected suffix extracted from spec. Dependency on gnustep-make version is now greater-equal instead of exactly-equal.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@37836 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8ef9b0927d
commit
65ab0ac567
2 changed files with 3 additions and 3 deletions
|
@ -64,9 +64,9 @@ _DEB_FILE=$(_DEB_TARNAME)_$(_DEB_ARCH).deb
|
|||
_ABS_OBJ_DIR=$(shell (cd "$(GNUSTEP_BUILD_DIR)"; pwd))/obj
|
||||
|
||||
ifeq ($(DEB_BUILD_DEPENDS), )
|
||||
DEB_BUILD_DEPENDS=gnustep-make (=$(GNUSTEP_MAKE_VERSION))
|
||||
DEB_BUILD_DEPENDS=gnustep-make (>=$(GNUSTEP_MAKE_VERSION))
|
||||
else
|
||||
DEB_BUILD_DEPENDS+=, gnustep-make (=$(GNUSTEP_MAKE_VERSION))
|
||||
DEB_BUILD_DEPENDS+=, gnustep-make (>=$(GNUSTEP_MAKE_VERSION))
|
||||
endif
|
||||
|
||||
# To produce a signed Debian source and binary package,
|
||||
|
|
|
@ -104,7 +104,7 @@ def process_specfile(specfilename):
|
|||
tf.write("DEB_PACKAGE=\${DEB_PACKAGE:-%s}\n" % value)
|
||||
tf.write("DEB_SOURCE=\${DEB_SOURCE:-%s}\n" % value)
|
||||
elif key=="Release":
|
||||
tf.write("DEB_VERSION_SUFFIX=\${DEB_VERSION_SUFFIX:-~%s}\n" % value)
|
||||
tf.write("DEB_VERSION_SUFFIX=\${DEB_VERSION_SUFFIX:-%s}\n" % value)
|
||||
elif key=="Source":
|
||||
# Source URL is not mappable to anything useful.
|
||||
# Possibly only includable in README.Debian.
|
||||
|
|
Loading…
Reference in a new issue