diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2001-03-20 11:48:43 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-20 11:48:43 -0800 |
commit | 1fd9ea5d5894b7486317cb3cf84e998c1ad24535 (patch) | |
tree | e84b3a68bc06b65d73faaf46685592e419e7bb3a | |
parent | 116b39e02f473596533d5d919405e97a7cee18be (diff) | |
download | gcc-1fd9ea5d5894b7486317cb3cf84e998c1ad24535.zip gcc-1fd9ea5d5894b7486317cb3cf84e998c1ad24535.tar.gz gcc-1fd9ea5d5894b7486317cb3cf84e998c1ad24535.tar.bz2 |
Fix merge error.
From-SVN: r40668
-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 e8f36cd..9010f3b 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 \ |