From: Paolo Bonzini Date: Thu, 1 Oct 2009 18:18:29 +0000 (+0200) Subject: unbreak `make rpcgen' X-Git-Tag: v0.7.2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96ad9ed33b9f58a2ff4399512fb7b72c27325a1c;p=thirdparty%2Flibvirt.git unbreak `make rpcgen' Fix "make rpcgen", broken by the directory reorganization. * src/Makefile.am (rpcgen): Fix path to rpcgen_fix.pl. --- diff --git a/src/Makefile.am b/src/Makefile.am index de7765cd1c..f3d4559c34 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -332,8 +332,8 @@ rpcgen: $(RPCGEN) -h -o rp.h-t $(srcdir)/remote/remote_protocol.x $(RPCGEN) -c -o rp.c-t $(srcdir)/remote/remote_protocol.x if HAVE_GLIBC_RPCGEN - perl -w $(srcdir)/rpcgen_fix.pl rp.h-t > rp.h-t1 - perl -w $(srcdir)/rpcgen_fix.pl rp.c-t > rp.c-t1 + perl -w $(srcdir)/remote/rpcgen_fix.pl rp.h-t > rp.h-t1 + perl -w $(srcdir)/remote/rpcgen_fix.pl rp.c-t > rp.c-t1 (echo '#include '; cat rp.c-t1) > rp.c-t2 chmod 0444 rp.c-t2 rp.h-t1 mv -f rp.h-t1 $(srcdir)/remote/remote_protocol.h