]> git.ipfire.org Git - thirdparty/libvirt.git/commit
build: Fix AUTHORS generation
authorJiri Denemark <jdenemar@redhat.com>
Fri, 14 Dec 2012 15:14:15 +0000 (16:14 +0100)
committerJiri Denemark <jdenemar@redhat.com>
Mon, 17 Dec 2012 20:17:55 +0000 (21:17 +0100)
commit7f193f1f78e1ad976a2f3f65347af650d27f7632
tree47b4ad380b34baa092d1aa33a4b84b41f6daa9e2
parentbc5b270c44db224b2ba2ebfe6368a43f18caeb00
build: Fix AUTHORS generation

Using s/#authorslist#/$$out/ makes perl eat @domain part of all email
addresses from $out since it tries to interpret them as array variables.
I'm not sure if we can escape those in s/// but I know we can use print:

    s/#authorslist#// and print '$$out'

to tell perl not to even look inside $out.

This patch also fixes gen-AUTHORS so that it works in VPATH.
Makefile.am