ICU-360 (Steven's proposed fix) don't call pwd all the time when generating packaging list

X-SVN-Rev: 2526
This commit is contained in:
Yves Arrouye 2000-09-27 22:09:04 +00:00
parent a2ef9023ee
commit 8a04b4bb60

View File

@ -177,8 +177,9 @@ $(TMPDATADIR)/icudata.lst: Makefile $(srcdir)/Makefile.in $(srcdir)/genrb/genrbf
@echo Generating $@ list of data files
@$(mkinstalldirs) $(TMPDATADIR)
@-$(RMV) $(TMPDATADIR)/icudata.lst
@for file in $(DATAFILES); do \
echo `pwd`/$$file >> $(TMPDATADIR)/icudata.lst; \
@pwd=`pwd`; \
for file in $(DATAFILES); do \
echo $$pwd/$$file >> $(TMPDATADIR)/icudata.lst; \
done;
$(TMPDATADIR)/testdata.lst: Makefile