aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2005-01-07 22:02:44 -0800
committerLinus Torvalds <torvalds@evo.osdl.org>2005-01-07 22:02:44 -0800
commit7d2b870243bef6003b4fd57bba8f9fc80894072f (patch)
treef958870760510328719d763ddb7af440382bbec8 /Makefile
parentd4d539a9571355e80543616d2bbb6a498119c437 (diff)
downloadhistory-7d2b870243bef6003b4fd57bba8f9fc80894072f.tar.gz
[PATCH] Remove EXPORT_SYMBOL_NOVERS
Vadim Lobanov points out that EXPORT_SYMBOL_NOVERS is no longer used; in fact, SH still uses it, but once we fix that, the kernel is clean. Remove it. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2338eecc5171fc..3c7e1afc4a5b35 100644
--- a/Makefile
+++ b/Makefile
@@ -1168,7 +1168,7 @@ cmd_TAGS = $(all-sources) | etags -
quiet_cmd_tags = MAKE $@
define cmd_tags
rm -f $@; \
- CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
+ CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_GPL"`; \
$(all-sources) | xargs ctags $$CTAGSF -a
endef