summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-17 15:11:57 +0000
committerGuido van Rossum <guido@python.org>1995-02-17 15:11:57 +0000
commit9e575ff7d8edc6ad0a12c38c242d4297eac12ddc (patch)
tree3f017bd542aa75eb97c8d787376bc5a5ff9ea583
parenta38a5035768854e9e0d7e071baab30a0828bbc3a (diff)
downloadcpython-git-9e575ff7d8edc6ad0a12c38c242d4297eac12ddc.tar.gz
remove bogus ## in front of gcc __VERSION__
-rw-r--r--Modules/config.c.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 9e0f34a54d..0e4db0c002 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -136,7 +136,7 @@ getargcargv(argc,argv)
#endif
#ifdef __GNUC__
-#define COMPILER " [GCC " ##__VERSION__ "]"
+#define COMPILER " [GCC " __VERSION__ "]"
#endif
#ifndef COMPILER