diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-20 19:48:43 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-20 19:48:43 +0000 |
commit | 4b7738cb9db2b8d5bc6e9d69c1e4ee8a2ff98ce7 (patch) | |
tree | e84b3a68bc06b65d73faaf46685592e419e7bb3a | |
parent | 399d5f1dc3e788f3c85ab94c833f44c10c031937 (diff) | |
download | gcc-4b7738cb9db2b8d5bc6e9d69c1e4ee8a2ff98ce7.tar.gz |
Fix merge error.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40668 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in index e8f36cd8906..9010f3bc437 100644 --- a/libstdc++-v3/src/Makefile.in +++ b/libstdc++-v3/src/Makefile.in @@ -375,7 +375,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ - cp -pr $$/$$file $(distdir)/$$file; \ + cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |