From 6a9304522227d4b4df873d3716cf06093d497700 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 4 Mar 2004 16:34:23 +0000 Subject: nginx-0.0.2-2004-03-04-19:34:23 import --- auto/make | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'auto/make') diff --git a/auto/make b/auto/make index c75a099dc..31c414c26 100644 --- a/auto/make +++ b/auto/make @@ -43,7 +43,10 @@ do done echo >> $MAKEFILE -inc=`echo "$CORE_INCS -I $OBJS" | sed -e "s/\//\\\\\\/g"` +inc="$CORE_INCS -I $OBJS" +if [ $PLATFORM = win32 ]; then + inc=`echo $inc | sed -e "s/\//\\\\\\/g"` +fi echo "CORE_INCS = $inc" >> $MAKEFILE echo >> $MAKEFILE @@ -57,7 +60,10 @@ do done echo >> $MAKEFILE -inc=`echo "$HTTP_INCS" | sed -e "s/\//\\\\\\/g"` +inc="$HTTP_INCS" +if [ $PLATFORM = win32 ]; then + inc=`echo $inc | sed -e "s/\//\\\\\\/g"` +fi echo "HTTP_INCS = $inc" >> $MAKEFILE echo >> $MAKEFILE -- cgit