From ae678a132605a4c2d8eebc3b5028bc4666f1cff0 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 26 Sep 1996 14:10:02 -0700 Subject: [PATCH] (stmp-int-hdrs): Don't cd to srcdir before copying header files to objdir. From-SVN: r12849 --- gcc/Makefile.in | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2aec568d93a4..9ee57f7ed984 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1809,14 +1809,12 @@ stmp-int-hdrs: stmp-fixinc $(USER_H) xlimits.h objc-headers # The sed command gets just the last file name component; # this is necessary because VPATH could add a dirname. # Using basename would be simpler, but some systems don't have it. - objdir=`pwd`; \ - cd $(srcdir); \ for file in .. $(USER_H); do \ if [ X$$file != X.. ]; then \ realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ - rm -f $$objdir/include/$$realfile; \ - cp $$file $$objdir/include; \ - chmod a+r $$objdir/include/$$realfile; \ + rm -f include/$$realfile; \ + cp $$file include; \ + chmod a+r include/$$realfile; \ fi; \ done rm -f include/limits.h