From: Jeffrey Altman Date: Fri, 26 Nov 2010 07:51:16 +0000 (-0500) Subject: Windows: make use of AFSDEV_BIN and set the PATH X-Git-Tag: upstream/1.8.0_pre1^2~4435 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5186e1686f1eaa1f5aaddfaa90da715aba045f67;p=packages%2Fo%2Fopenafs.git Windows: make use of AFSDEV_BIN and set the PATH ntbuild.bat defines AFSDEV_BIN which is set to the list of directories from which executables required for the build process will be executed. However, this value was never used to modify the PATH environment variable. Make it do so. Change-Id: I3ac65a7ceea54cbcf1d2c41f6b0e7af9de960224 Reviewed-on: http://gerrit.openafs.org/3387 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/config/NTMakefile.amd64_w2k b/src/config/NTMakefile.amd64_w2k index 10f421a55..7a0ecdaa6 100644 --- a/src/config/NTMakefile.amd64_w2k +++ b/src/config/NTMakefile.amd64_w2k @@ -70,6 +70,7 @@ AFSDEV_BUILDTYPE = NONE !ENDIF INCLUDE = $(AFSDEV_INCLUDE) +PATH = $(AFSDEV_BIN);$(PATH) !IFNDEF AFSDEV_LIB !ERROR Must define AFSDEV_LIB to be the default library directories. diff --git a/src/config/NTMakefile.i386_nt40 b/src/config/NTMakefile.i386_nt40 index a8e6e0c9d..30461968a 100644 --- a/src/config/NTMakefile.i386_nt40 +++ b/src/config/NTMakefile.i386_nt40 @@ -70,6 +70,7 @@ AFSDEV_BUILDTYPE = NONE !ENDIF INCLUDE = $(AFSDEV_INCLUDE) +PATH = $(AFSDEV_BIN);$(PATH) !IFNDEF AFSDEV_LIB !ERROR Must define AFSDEV_LIB to be the default library directories. diff --git a/src/config/NTMakefile.i386_w2k b/src/config/NTMakefile.i386_w2k index 2113554d9..f8dadde98 100644 --- a/src/config/NTMakefile.i386_w2k +++ b/src/config/NTMakefile.i386_w2k @@ -74,6 +74,7 @@ AFSDEV_BUILDTYPE = NONE !ENDIF INCLUDE = $(AFSDEV_INCLUDE) +PATH = $(AFSDEV_BIN);$(PATH) !IFNDEF AFSDEV_LIB !ERROR Must define AFSDEV_LIB to be the default library directories.