save PATH as part of configuration

This commit is contained in:
persan 2019-01-30 17:39:43 +01:00
parent 6373065fff
commit 5e6fc8ceeb
2 changed files with 2 additions and 1 deletions

View File

@ -2,4 +2,4 @@ PREFIX=%(prefix)s
LIBDIR ?= %(libdir)s
DESTDIR ?=
GNATFLAGS ?=
ADA_PROJECT_DIR ?= ${PREFIX}/lib/gnat
export PATH:=${PREFIX}/bin:%(PATH)s

1
configure vendored
View File

@ -179,6 +179,7 @@ def parsargs(args):
# fail = True
if fail:
return None
args.__dict__["PATH"] = os.getenv("PATH")
return args