Bugzilla bug 106388: made the release_export rule work with VPATH.

This commit is contained in:
wtc%netscape.com 2001-10-24 05:43:07 +00:00
Родитель 920799d678
Коммит d9ad58b31c
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -862,8 +862,10 @@ $(SOURCE_RELEASE_XP_DIR)/include::
$(NSINSTALL) -D $@; \
fi
release_export:: $(EXPORTS) $(SOURCE_RELEASE_XP_DIR)/include
$(INSTALL) -m 444 $(EXPORTS) $(SOURCE_RELEASE_XP_DIR)/include
release_export:: $(SOURCE_RELEASE_XP_DIR)/include
release_export:: $(EXPORTS)
$(INSTALL) -m 444 $^ $(SOURCE_RELEASE_XP_DIR)/include
endif