26 lines
708 B
Diff
26 lines
708 B
Diff
|
|
From 33a3664897549751fe37280d3d110bff66f7b2e7 Mon Sep 17 00:00:00 2001
|
||
|
|
From: huyan <hu.huyan@huawei.com>
|
||
|
|
Date: Sat, 16 Mar 2019 16:19:05 +0800
|
||
|
|
Subject: [PATCH] backport fix --with-rpcgen=internal nottaking effect
|
||
|
|
|
||
|
|
---
|
||
|
|
configure.ac | 2 ++
|
||
|
|
1 file changed, 2 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/configure.ac b/configure.ac
|
||
|
|
index 228fe7f..49b1e8d 100644
|
||
|
|
--- a/configure.ac
|
||
|
|
+++ b/configure.ac
|
||
|
|
@@ -155,6 +155,8 @@ AC_ARG_WITH(rpcgen,
|
||
|
|
do if test -f $p ; then RPCGEN_PATH=$p ; break; fi ; done
|
||
|
|
elif test "$rpcgen_path" != "internal"; then
|
||
|
|
RPCGEN_PATH=$rpcgen_path
|
||
|
|
+ else
|
||
|
|
+ RPCGEN_PATH=internal
|
||
|
|
fi
|
||
|
|
AC_SUBST(RPCGEN_PATH)
|
||
|
|
AM_CONDITIONAL(CONFIG_RPCGEN, [test "$RPCGEN_PATH" = "internal"])
|
||
|
|
--
|
||
|
|
1.8.3.1
|
||
|
|
|