ports/libports: Use repository-local PWD

The PWD variable contains the current working directory of the original
location where 'make -C' is executed, not the directory specified as
argument of '-C'. The tools referenced by ports/libports, however,
expect PWD to point to the root of the respective repository.
This commit is contained in:
Norman Feske 2013-06-10 12:02:30 +02:00
parent d2e883e235
commit d0d5ec92b6
2 changed files with 4 additions and 4 deletions

View File

@ -15,8 +15,8 @@ DOWNLOAD_DIR = download
CONTRIB_DIR = contrib
GNU_FIND = find
SHELL = bash
SIGVERIFIER = $(PWD)/../tool/download_sigver
HASHVERIFIER = $(PWD)/../tool/download_hashver
SIGVERIFIER = $(CURDIR)/../tool/download_sigver
HASHVERIFIER = $(CURDIR)/../tool/download_hashver
#
# Create download and contrib directory so that '<port>.mk' files

View File

@ -15,8 +15,8 @@ DOWNLOAD_DIR = download
CONTRIB_DIR = contrib
GNU_FIND = find
SHELL = bash
SIGVERIFIER = $(PWD)/../tool/download_sigver
HASHVERIFIER = $(PWD)/../tool/download_hashver
SIGVERIFIER = $(CURDIR)/../tool/download_sigver
HASHVERIFIER = $(CURDIR)/../tool/download_hashver
#
# Create download and contrib directory so that '<port>.mk' files