diff options
author | kan <kan@FreeBSD.org> | 2004-01-06 19:20:30 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-01-06 19:20:30 +0000 |
commit | 24d1ace5d75a839a8df211ff8a1bb349d5aeac30 (patch) | |
tree | 9d9cbf550a66e974981abe0335d507456acc3226 /gnu/lib | |
parent | bd0c4d216c3f4b5e2fe8bdbde92c782571bc4248 (diff) | |
download | FreeBSD-src-24d1ace5d75a839a8df211ff8a1bb349d5aeac30.zip FreeBSD-src-24d1ace5d75a839a8df211ff8a1bb349d5aeac30.tar.gz |
Correct the atomicity.h fallback path on architectures which do not
define their own.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libstdc++/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libstdc++/Makefile b/gnu/lib/libstdc++/Makefile index 77f3680..6f9e287 100644 --- a/gnu/lib/libstdc++/Makefile +++ b/gnu/lib/libstdc++/Makefile @@ -157,7 +157,7 @@ MARCHDIR= ${MACHINE_ARCH} .if exists(${SRCDIR}/config/cpu/${MARCHDIR}/${h}) TARGETHDRS+= ${SRCDIR}/config/cpu/${MARCHDIR}/${h} .else -TARGETHDRS+= ${SRCDIR}/config/cpu/generic/bits/${h} +TARGETHDRS+= ${SRCDIR}/config/cpu/generic/${h} .endif .endfor |