Commit 8c4caa3d by Richard Kenner

Added {} around file variable.

From-SVN: r9023
parent 829bd124
# GNU Objective C Runtime Makefile
# Copyright (C) 1993 Free Software Foundation, Inc.
# Copyright (C) 1993, 1995 Free Software Foundation, Inc.
#
# This file is part of GNU CC.
#
......@@ -69,9 +69,9 @@ copy-headers:
-rm -fr $(incinstalldir)/objc
-mkdir $(incinstalldir)/objc
for file in $(OBJC_H); do \
realfile=$(srcdir)/objc/$$file; \
cp $$realfile $(incinstalldir)/objc; \
chmod a+r $(incinstalldir)/objc/$$file; \
realfile=$(srcdir)/objc/$${file}; \
cp $${realfile} $(incinstalldir)/objc; \
chmod a+r $(incinstalldir)/objc/$${file}; \
done
mostlyclean:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment