From c99f1a5006a2e50554443a473e9ced82477e763c Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 23 Jul 2019 16:39:32 -0700 Subject: [PATCH] release.sh: Support mesa/glu Signed-off-by: Matt Turner --- release.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index aa38d29..04c78cc 100755 --- a/release.sh +++ b/release.sh @@ -266,8 +266,9 @@ get_section() { return 1 elif [ x"$section" != xdrm ] && [ x"$section" != xmesa ] && + [ x"$section" != xglu ] && [ x"$section" != xdemos ]; then - echo "Error: section $section is not supported, only libdrm, mesa and demos are." + echo "Error: section $section is not supported, only libdrm, mesa, glu and demos are." return 1 fi fi @@ -590,7 +591,7 @@ process_module() { srv_path="/srv/$host_current/www/$section_path" list_to=$list_mesa_announce list_cc=$list_mesa_devel - elif [ x"$section" = xdemos ]; then + elif [ x"$section" = xdemos ] || [ x"$section" = xglu ]; then host_current=$host_mesa section_path=archive/$section srv_path="/srv/$host_current/www/$section_path" -- 2.11.4.GIT