|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] stubdom: allow building with read-only sources
> --- a/stubdom/Makefile
> +++ b/stubdom/Makefile
> @@ -155,8 +175,9 @@ cross-libpci: $(LIBPCI_STAMPFILE)
> $(LIBPCI_STAMPFILE): pciutils-$(XEN_TARGET_ARCH) $(NEWLIB_STAMPFILE)
> $(ZLIB_STAMPFILE)
> ( cd $< && \
> cp ../libpci.config.h lib/config.h && \
> + chmod u+w lib/config.h && \
> echo '#define PCILIB_VERSION "$(LIBPCI_VERSION)"' >> lib/config.h &&
> \
> - cp ../libpci.config.mak lib/config.mk && \
> + ln -sf ../../libpci.config.mak lib/config.mk && \
Should the above line be
+ ln -sf ../libpci.config.mak lib/config.mk && \
instead? It seems an extra ../ was added and based just on the patch I
can't tell why.
Patrick
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|