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.6.0.pre2^2~126 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=ccbc727f3a89b4a23ff7797193166e50542750c2;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. Reviewed-on: http://gerrit.openafs.org/3387 Tested-by: BuildBot Reviewed-by: Derrick Brashear (cherry picked from commit 5186e1686f1eaa1f5aaddfaa90da715aba045f67) Change-Id: I2a4de2258027b0a943d0f223c7493b8d33393777 Reviewed-on: http://gerrit.openafs.org/3779 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/config/NTMakefile.amd64_w2k b/src/config/NTMakefile.amd64_w2k index 5c3c50bb7..110b51a5a 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 c4bb8c43f..011390558 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 7daee09a7..b646d4da7 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.