Commit 72fcd388b6a8f6b5c4874418a0152300a14b2d5b
1 parent
e600d1ef
Call Perl directly instead of relying on shebang
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6785 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
3 deletions
Makefile
... | ... | @@ -292,15 +292,15 @@ cscope: |
292 | 292 | texi2dvi $< |
293 | 293 | |
294 | 294 | qemu.1: qemu-doc.texi |
295 | - $(SRC_PATH)/texi2pod.pl $< qemu.pod | |
295 | + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod | |
296 | 296 | pod2man --section=1 --center=" " --release=" " qemu.pod > $@ |
297 | 297 | |
298 | 298 | qemu-img.1: qemu-img.texi |
299 | - $(SRC_PATH)/texi2pod.pl $< qemu-img.pod | |
299 | + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod | |
300 | 300 | pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ |
301 | 301 | |
302 | 302 | qemu-nbd.8: qemu-nbd.texi |
303 | - $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod | |
303 | + perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod | |
304 | 304 | pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@ |
305 | 305 | |
306 | 306 | info: qemu-doc.info qemu-tech.info | ... | ... |