added rhel macro to the rpmdefines

This commit is contained in:
David Fan 2022-09-30 16:27:50 +01:00
parent 73d52905ad
commit 179163f729

View file

@ -196,7 +196,9 @@ class Commands(Commands):
'--define', '_rpmdir %s' % self.layout.rpmdir,
'--define', 'dist .%s' % self._disttag,
# int and float this to remove the decimal
'--define', '%s 1' % self._disttag]
'--define', '%s 1' % self._disttag,
# This is so the rhel macro is set for spec files
'--define', 'rhel %s' % self._distval.split('_')[0]]
self.log.debug("RPMDefines: %s" % self._rpmdefines)
def construct_build_url(self, *args, **kwargs):