From 798aaf91c26feccd599ea9fded53817a1f4a011a Mon Sep 17 00:00:00 2001
From: nhertz <nhertz@nrao.edu>
Date: Tue, 25 Aug 2020 15:27:59 -0600
Subject: [PATCH] Added message that warns the user that building all available
 packages will take a LONG time

---
 build/recipes/build_pkgs/build_pkgs.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build/recipes/build_pkgs/build_pkgs.py b/build/recipes/build_pkgs/build_pkgs.py
index a0c38066f..304d2bad2 100644
--- a/build/recipes/build_pkgs/build_pkgs.py
+++ b/build/recipes/build_pkgs/build_pkgs.py
@@ -60,6 +60,9 @@ class Recipe:
         :return: Paths to files, as strings, created by the recipe.
         """
         if self.options['name'] == "all":
+            logger.warning("WARNING: You've requested all packages to be built. This will take a long time.")
+            logger.warning("If only one or a few packages have changed, consider specifying them "
+                           "in a comma-separated list.")
             pkgs = self.pkg_list
         else:
             pkgs = self.options['name'].split(',')
-- 
GitLab