From 0d5b9e1b58c8d5dd41b605a26b48676e8890c8f1 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Mon, 14 Mar 2016 12:50:09 +1300 Subject: [PATCH] Order RPM_SPEC_FILES by dependency Also remove tabs which should only appear before target actions. --- Makefile.builder | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile.builder b/Makefile.builder index 4a2170e..db4cd27 100644 --- a/Makefile.builder +++ b/Makefile.builder @@ -1,13 +1,13 @@ -ifeq ($(PACKAGE_SET),dom0) -RPM_SPEC_FILES := \ - anaconda/anaconda.spec \ - firstboot/firstboot.spec \ - qubes-release/qubes-release.spec \ - lorax/lorax.spec \ - lorax-templates-qubes/lorax-templates-qubes.spec \ - pungi/pungi.spec \ - pykickstart/pykickstart.spec \ - qubes-release/qubes-dom0-dist-upgrade.spec \ +RPM_SPEC_FILES.dom0 := \ + pykickstart/pykickstart.spec \ + lorax/lorax.spec \ + lorax-templates-qubes/lorax-templates-qubes.spec \ + pungi/pungi.spec \ + anaconda/anaconda.spec \ + firstboot/firstboot.spec \ + qubes-release/qubes-release.spec \ + qubes-release/qubes-dom0-dist-upgrade.spec \ livecd-tools/livecd-tools.spec \ live/qubes-live.spec -endif + +RPM_SPEC_FILES := $(RPM_SPEC_FILES.$(PACKAGE_SET))