summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-22 12:03:53 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-22 12:03:53 +0000
commit2c7e5c09a27ccb0e6ca7274fd464165e3f25a03e (patch)
tree60f4909a17c9549a6b029da36ab5b5ed33008c51 /Makefile
parentd3154acac086c48b2731621ce86e677cfe3bfd1e (diff)
Hide .hidden stuff unless explicitly enabled
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d998f06b..33478917b 100644
--- a/Makefile
+++ b/Makefile
@@ -193,7 +193,6 @@ uClibc_config: Makefile Config
else \
echo "#undef __UCLIBC_HAS_RPC__" >> include/bits/uClibc_config.h ; \
fi
- @echo "#define C_SYMBOL_PREFIX "\""$(C_SYMBOL_PREFIX)"\" >> include/bits/uClibc_config.h
@if [ "$(DOLFS)" = "true" ] ; then \
echo "#define __UCLIBC_HAVE_LFS__ 1" >> include/bits/uClibc_config.h ; \
else \
@@ -219,6 +218,12 @@ uClibc_config: Makefile Config
else \
echo "#undef ASSUME_DEVPTS" >> include/bits/uClibc_config.h ; \
fi
+ @echo "#define C_SYMBOL_PREFIX "\""$(C_SYMBOL_PREFIX)"\" >> include/bits/uClibc_config.h
+ @if [ "$(HAVE_DOT_HIDDEN)" = "true" ] ; then \
+ echo "#define HAVE_DOT_HIDDEN 1" >> include/bits/uClibc_config.h ; \
+ else \
+ echo "#undef HAVE_DOT_HIDDEN" >> include/bits/uClibc_config.h ; \
+ fi
subdirs: $(patsubst %, _dir_%, $(DIRS))