summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Aas <gisle@activestate.com>2012-03-26 13:52:43 -0800
committerGisle Aas <gisle@aas.no>2012-03-27 00:09:23 +0200
commitc44493f128e2935f10570c2a0e7a05fa8b412918 (patch)
tree400db86ea4f0d3d6c6a69873375fb65604d7d50d
parent826b3747f7551c014141c503741687c6723cbdfc (diff)
downloadperl-c44493f128e2935f10570c2a0e7a05fa8b412918.tar.gz
Avoid 'USE_SITECUSTOMIZE redefined'-warning during compilation
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 173789345d..5657432acd 100644
--- a/perl.c
+++ b/perl.c
@@ -24,7 +24,7 @@
* function of the interpreter; that can be found in perlmain.c
*/
-#ifdef PERL_IS_MINIPERL
+#if defined(PERL_IS_MINIPERL) && !defined(USE_SITECUSTOMIZE)
# define USE_SITECUSTOMIZE
#endif