From patchwork Thu Jul 5 12:52:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D3889: packaging: make help output correct for fedora and centos targets From: phabricator X-Patchwork-Id: 32637 Message-Id: <23f0b1c170bae46b0d26320075c20a9d@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Thu, 5 Jul 2018 12:52:09 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG52a958c982a6: packaging: make help output correct for fedora and centos targets (authored by durin42, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D3889?vs=9443&id=9456 REVISION DETAIL https://phab.mercurial-scm.org/D3889 AFFECTED FILES contrib/packaging/Makefile CHANGE DETAILS To: durin42, #hg-reviewers Cc: mercurial-devel diff --git a/contrib/packaging/Makefile b/contrib/packaging/Makefile --- a/contrib/packaging/Makefile +++ b/contrib/packaging/Makefile @@ -26,13 +26,13 @@ help: @echo 'Packaging Make Targets' @echo '' - @echo 'docker-centos-{$(strip $(CENTOS_RELEASES))}' + @echo 'docker-centos{$(strip $(CENTOS_RELEASES))}' @echo ' Build an RPM for a specific CentOS version using Docker.' @echo '' @echo 'docker-debian-{$(strip $(DEBIAN_CODENAMES))}' @echo ' Build Debian packages specific to a Debian distro using Docker.' @echo '' - @echo 'docker-fedora-{$(strip $(FEDORA_RELEASES))}' + @echo 'docker-fedora{$(strip $(FEDORA_RELEASES))}' @echo ' Build an RPM for a specific Fedora version using Docker.' @echo '' @echo 'docker-ubuntu-{$(strip $(UBUNTU_CODENAMES))}' @@ -54,10 +54,10 @@ @echo 'ppa' @echo ' Build a Debian source package locally targeting the current system' @echo '' - @echo 'centos-{$(strip $(CENTOS_RELEASES))}' + @echo 'centos{$(strip $(CENTOS_RELEASES))}' @echo ' Build an RPM for a specific CentOS version locally' @echo '' - @echo 'fedora-{$(strip $(FEDORA_RELEASES))}' + @echo 'fedora{$(strip $(FEDORA_RELEASES))}' @echo ' Build an RPM for a specific Fedora version locally' .PHONY: help