Browse Source

Fix concatenation of pypy variable.

Jelmer Vernooij 8 năm trước cách đây
mục cha
commit
f063789e99
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      debian/rules

+ 1 - 2
debian/rules

@@ -9,8 +9,7 @@ LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
 pythonpath = $$(ls -d $(CURDIR)/build/lib.*-$(1))
 pythonpath_dbg = $$(ls -d $(CURDIR)/build/lib_d.*-$(1) 2>/dev/null || ls -d $(CURDIR)/build/lib.*$(1)-pydebug)
 
-pyflavours = python2,python3
-pyflavours += $(shell which pypy >/dev/null && echo ,pypy)
+pyflavours = python2,python3$(shell which pypy >/dev/null && echo -n ,pypy)
 
 %:
 	dh $* --with $(pyflavours) --buildsystem=python_distutils