(copy-headers): Use $(srcdir) from this makefile, not the parent's.

From-SVN: r14477
This commit is contained in:
Richard Kenner 1997-07-18 06:44:21 -04:00
parent 799f426536
commit 4f286636c9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ copy-headers:
-rm -fr $(incinstalldir)/objc
-mkdir $(incinstalldir)/objc
for file in $(OBJC_H); do \
realfile=$(srcdir)/objc/$${file}; \
realfile=$(srcdir)/$${file}; \
cp $${realfile} $(incinstalldir)/objc; \
chmod a+r $(incinstalldir)/objc/$${file}; \
done