Commit 8c4caa3d by Richard Kenner

Added {} around file variable.

From-SVN: r9023
parent 829bd124
# GNU Objective C Runtime Makefile # 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. # This file is part of GNU CC.
# #
...@@ -69,9 +69,9 @@ copy-headers: ...@@ -69,9 +69,9 @@ copy-headers:
-rm -fr $(incinstalldir)/objc -rm -fr $(incinstalldir)/objc
-mkdir $(incinstalldir)/objc -mkdir $(incinstalldir)/objc
for file in $(OBJC_H); do \ for file in $(OBJC_H); do \
realfile=$(srcdir)/objc/$$file; \ realfile=$(srcdir)/objc/$${file}; \
cp $$realfile $(incinstalldir)/objc; \ cp $${realfile} $(incinstalldir)/objc; \
chmod a+r $(incinstalldir)/objc/$$file; \ chmod a+r $(incinstalldir)/objc/$${file}; \
done done
mostlyclean: 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