From: Ian Jackson Date: Sat, 22 May 2010 18:39:30 +0000 (+0100) Subject: generic build fix: makefile multi-line incompatibility fix X-Git-Tag: userv/0.6.1~86 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=userv-utils.git;a=commitdiff_plain;h=80ebbf9e58e2c8a5980d96fd33ac68fd790ed53d;ds=sidebyside generic build fix: makefile multi-line incompatibility fix --- diff --git a/ipif/Makefile b/ipif/Makefile index ce3f440..a34a85f 100644 --- a/ipif/Makefile +++ b/ipif/Makefile @@ -53,13 +53,12 @@ install-examples: cp *.example $(etcvpn)/. udptunnel-reconf: udptunnel-reconf.pl Makefile - perl -pe ' \ - print "\ -\$$shareuserv= \"$(shareuserv)\";\n\ -\$$etcvpn= \"$(etcvpn)\";\n\ -\$$varlibvpn= \"$(varlibvpn)\";\n" if m#^\# \@\@\@\-#; \ - $$_="" if m/^\# \@\@\@\-/ .. m/^\# \-\@\@\@/; \ - ' \ + perl -p \ + -e ' print " ' \ + -e '\$$shareuserv= \"$(shareuserv)\";\n ' \ + -e '\$$etcvpn= \"$(etcvpn)\";\n ' \ + -e '\$$varlibvpn= \"$(varlibvpn)\";\n" if m#^\# \@\@\@\-#; ' \ + -e ' $$_="" if m/^\# \@\@\@\-/ .. m/^\# \-\@\@\@/; ' \ <$< >$@.new chmod +x $@.new mv -f $@.new $@