Skip to content

Commit

Permalink
Detect devel builds based on .git/ in $OPAL_TOP_SRCDIR
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Schuchart <[email protected]>
  • Loading branch information
devreal committed Jan 4, 2024
1 parent ec01df5 commit 37da203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/opal_configure_options.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 37da203

Please sign in to comment.