From 2f9af42b2ed5a81b5e94a363412f5d92f652b904 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Tue, 12 Sep 2017 10:40:46 +0900 Subject: [PATCH] configure: set KERNELSRC with double-quotes This evals 4.12.5-300.fc26.x86_64 right away, which is necessary for e.g. the variable used for System.map detection. (looking at history, ihk always had double-quotes while mckernel always had singles quotes -- this looks like a manual copy typo?) --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index ed894e52..501f19b1 100755 --- a/configure +++ b/configure @@ -3890,7 +3890,7 @@ esac case "X$WITH_KERNELSRC" in Xyes | Xno | X) - WITH_KERNELSRC='/lib/modules/`uname -r`/build' + WITH_KERNELSRC="/lib/modules/`uname -r`/build" ;; X/*) ;; diff --git a/configure.ac b/configure.ac index 01356507..d5e4621c 100644 --- a/configure.ac +++ b/configure.ac @@ -153,7 +153,7 @@ esac case "X$WITH_KERNELSRC" in Xyes | Xno | X) - WITH_KERNELSRC='/lib/modules/`uname -r`/build' + WITH_KERNELSRC="/lib/modules/`uname -r`/build" ;; X/*) ;;