summaryrefslogtreecommitdiff
path: root/python3
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-11-19 13:36:56 +0100
committerMichael Stahl <mstahl@redhat.com>2012-11-19 13:37:28 +0100
commit1f8d5eed2a1055438b226838b2480677030619a0 (patch)
treeaccf7d79ad902cd23a4498540084035cb510fa7e /python3
parent760ef2ef7457aad9486a12a7f21da2b298749bf1 (diff)
python3: fix typos in makefile
Change-Id: I61ea54ff5a5771ad2dee1b3514c97fbdd9f241b9
Diffstat (limited to 'python3')
-rw-r--r--python3/ExternalProject_python3.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/python3/ExternalProject_python3.mk b/python3/ExternalProject_python3.mk
index 3dbf2051292d..af3653d8fce2 100644
--- a/python3/ExternalProject_python3.mk
+++ b/python3/ExternalProject_python3.mk
@@ -27,19 +27,19 @@ $(call gb_ExternalProject_get_state_target,python3,build) :
ifeq ($(VCVER),110)
cd $(EXTERNAL_WORKDIR)/PCbuild \
&& MAKEFLAGS= MSBuild.exe pcbuild.sln /t:Build /p:Configuration=Release /p:PlatformToolset=v110 \
- cd $(EXTERNAL_WORKDIR) \
+ && cd $(EXTERNAL_WORKDIR) \
&& ln -s $(if $(filter 90,$(VCVER)),PC/VS9.0,PCbuild) LO_lib \
&& touch $@
else ifeq ($(VCVER),100)
cd $(EXTERNAL_WORKDIR)/PCbuild \
&& MAKEFLAGS= MSBuild.exe pcbuild.sln /t:Build /p:Configuration=Release /ToolsVersion:4.0 \
- cd $(EXTERNAL_WORKDIR) \
+ && cd $(EXTERNAL_WORKDIR) \
&& ln -s $(if $(filter 90,$(VCVER)),PC/VS9.0,PCbuild) LO_lib \
&& touch $@
else ifeq ($(VCVER),90)
cd $(EXTERNAL_WORKDIR)/PC/VS9.0 \
&& MAKEFLAGS= $(COMPATH)/vcpackages/vcbuild.exe pcbuild.sln "Release|$(if $(filter INTEL,$(CPUNAME)),Win32,x64)" \
- cd $(EXTERNAL_WORKDIR) \
+ && cd $(EXTERNAL_WORKDIR) \
&& ln -s $(if $(filter 90,$(VCVER)),PC/VS9.0,PCbuild) LO_lib \
&& touch $@
endif