pass PATH environment variable to script so 'fake' kernel source installations
authorFrank Mori Hess <fmhess@speakeasy.net>
Fri, 1 Mar 2002 21:20:43 +0000 (21:20 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Fri, 1 Mar 2002 21:20:43 +0000 (21:20 +0000)
will still work.

Makefile.modbuild

index dc01e8da447d65507311d4d0012ba94a32ee4ad3..2b7936b2834b73fb01b8d013382ff3a35b666934 100644 (file)
@@ -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),)