Fix for bug 290120 - compile source files with absolute pathnames on AIX. r=wtchang

This commit is contained in:
julien.pierre.bugs%sun.com 2005-04-13 20:58:06 +00:00
Родитель 656d99e8fc
Коммит 2649255cb0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -395,7 +395,7 @@ WCCFLAGS3 := $(subst -D,-d,$(WCCFLAGS2))
# Translate source filenames to absolute paths. This is required for
# debuggers under Windows & OS/2 to find source files automatically
ifeq (,$(filter-out OS2%,$(OS_TARGET)))
ifeq (,$(filter-out OS2 AIX,$(OS_TARGET)))
NEED_ABSOLUTE_PATH := 1
PWD := $(shell pwd)
endif