From 37da203d2a0f844d39a60120269a709fb7dc76d2 Mon Sep 17 00:00:00 2001 From: Joseph Schuchart Date: Thu, 4 Jan 2024 10:28:11 -0500 Subject: [PATCH] Detect devel builds based on .git/ in $OPAL_TOP_SRCDIR Signed-off-by: Joseph Schuchart --- config/opal_configure_options.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/opal_configure_options.m4 b/config/opal_configure_options.m4 index d5be1630aa9..0cfb7090418 100644 --- a/config/opal_configure_options.m4 +++ b/config/opal_configure_options.m4 @@ -3,7 +3,7 @@ dnl dnl Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana dnl University Research and Technology dnl Corporation. All rights reserved. -dnl Copyright (c) 2004-2005 The University of Tennessee and The University +dnl Copyright (c) 2004-2024 The University of Tennessee and The University dnl of Tennessee Research Foundation. All rights dnl reserved. dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, @@ -39,7 +39,7 @@ opal_show_subtitle "General configuration options" # Is this a developer copy? # -if test -d .git; then +if test -d ${OPAL_TOP_SRCDIR}/.git; then OPAL_DEVEL=1 else OPAL_DEVEL=0