Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto/make
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-03-04 19:34:23 +0300
committerIgor Sysoev <igor@sysoev.ru>2004-03-04 19:34:23 +0300
commit6a9304522227d4b4df873d3716cf06093d497700 (patch)
treebc6a3eb7d26df2048714235ce96b98471b813979 /auto/make
parenta536298c7bd1f525db97facab814a2906214ee7f (diff)
nginx-0.0.2-2004-03-04-19:34:23 import
Diffstat (limited to 'auto/make')
-rw-r--r--auto/make10
1 files changed, 8 insertions, 2 deletions
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