Bug 979681 - Correctly handle SOURCES.flags for sources with relative paths in them; r=glandium

This commit is contained in:
Ehsan Akhgari 2014-03-04 21:36:16 -05:00
Родитель a76ee1d66c
Коммит bd787c3deb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1091,7 +1091,7 @@ class RecursiveMakeBackend(CommonBackend):
def _process_per_source_flag(self, per_source_flag, backend_file):
for flag in per_source_flag.flags:
backend_file.write('%s_FLAGS += %s\n' % (per_source_flag.file_name, flag))
backend_file.write('%s_FLAGS += %s\n' % (mozpath.basename(per_source_flag.file_name), flag))
def _process_java_jar_data(self, jar, backend_file):
target = jar.name