Bug#691449: dpkg-buildflags should have an export mode for shell scripts

2012-10-25 Thread Matthias Klose
Package: dpkg A lot of rules files uses loops around configure calls, however there's no export mode which escapes the spaces in the output. Please add one. The sh mode won't work either for this case. $ debian/rules x set -ex; for v in 1.8 \ ; do \ if [ $v = 1.8 ]; then

Bug#691449: dpkg-buildflags should have an export mode for shell scripts

2012-10-25 Thread Jonathan Nieder
Hi Matthias, Matthias Klose wrote: A lot of rules files uses loops around configure calls, however there's no export mode which escapes the spaces in the output. Please add one. The sh mode won't work either for this case. Doesn't set -e; \ eval $$(dpkg-buildflags

Bug#691449: dpkg-buildflags should have an export mode for shell scripts

2012-10-25 Thread Guillem Jover
On Thu, 2012-10-25 at 11:53:47 -0700, Jonathan Nieder wrote: Matthias Klose wrote: A lot of rules files uses loops around configure calls, however there's no export mode which escapes the spaces in the output. Please add one. The sh mode won't work either for this case. Doesn't