fixeria has submitted this change. (
https://gerrit.osmocom.org/c/osmo-trx/+/30795 )
Change subject: configure.ac: check if LIBTRXCON_DIR (submodule) exists
......................................................................
configure.ac: check if LIBTRXCON_DIR (submodule) exists
Fail during the configure stage if the submodule is not fetched.
Change-Id: I06456c2087e160032f5bf8b36304477390f117d0
Related: OS#5599
---
M configure.ac
1 file changed, 6 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
osmith: Looks good to me, approved
laforge: Looks good to me, approved
diff --git a/configure.ac b/configure.ac
index 7451b50..abdcc2f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -212,7 +212,12 @@
AC_MSG_CHECKING([whether to enable building MS TRX])
AS_IF([test "x$with_mstrx" = "xyes"], [
AC_CONFIG_SUBDIRS([osmocom-bb/src/host/trxcon])
- AC_SUBST(LIBTRXCON_DIR, "osmocom-bb/src/host/trxcon")
+ LIBTRXCON_DIR="osmocom-bb/src/host/trxcon"
+ if ! test -d "$srcdir/$LIBTRXCON_DIR"; then
+ AC_MSG_RESULT([no])
+ AC_MSG_ERROR([$LIBTRXCON_DIR does not exist])
+ fi
+ AC_SUBST(LIBTRXCON_DIR)
AC_MSG_RESULT([yes])
], [
# Despite LIBTRXCON_DIR is added to SUBDIRS conditionally,
--
To view, visit
https://gerrit.osmocom.org/c/osmo-trx/+/30795
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I06456c2087e160032f5bf8b36304477390f117d0
Gerrit-Change-Number: 30795
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Hoernchen <ewild(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged