From 4378cb75bbf8e8f79ba0b236d1d56593c2d86de6 Mon Sep 17 00:00:00 2001 From: Frank Mori Hess Date: Fri, 1 Mar 2002 21:20:43 +0000 Subject: [PATCH] pass PATH environment variable to script so 'fake' kernel source installations will still work. --- Makefile.modbuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.modbuild b/Makefile.modbuild index dc01e8da..2b7936b2 100644 --- a/Makefile.modbuild +++ b/Makefile.modbuild @@ -62,11 +62,11 @@ all: config endif oldconfig: dummy - env -i $(CONFIG_SHELL) ./configure --old + env -i PATH=$(PATH) $(CONFIG_SHELL) ./configure --old #configure is called through env -i to prevent loading of variables from stale LINUXDIR config: dummy - env -i $(CONFIG_SHELL) ./configure --linuxdir $(LINUXDIR) + env -i PATH=$(PATH) $(CONFIG_SHELL) ./configure --linuxdir $(LINUXDIR) modules_install: $(patsubst %, _modinst_%, $(SUBDIRS)) ifeq ($(INSTALL_MOD_PATH),) -- 2.26.2