|
|
|
|
|
|
|
|
|
|
xen-api
[Xen-API] [PATCH 4 of 4] Modify the mk/Makefile to invoke autogen.sh &&
# HG changeset patch
# User David Scott <dave.scott@xxxxxxxxxxxxx>
# Date 1257961310 0
# Node ID a56bf1a4d97dc3545f0d9c833234a988c2a1350f
# Parent 1352f202e738ec3b579fca7e7dca749b4fdc53b1
Modify the mk/Makefile to invoke autogen.sh && configure to generate the main
Makefile.
Signed-off-by: David Scott <dave.scott@xxxxxxxxxxxxx>
diff -r 1352f202e738 -r a56bf1a4d97d mk/Makefile
--- a/mk/Makefile Wed Nov 11 17:41:49 2009 +0000
+++ b/mk/Makefile Wed Nov 11 17:41:50 2009 +0000
@@ -23,6 +23,7 @@
$(OUTPUT_API_DEVEL_PKG):
rm -rf $(STAGING)
mkdir -p $(MY_OUTPUT_DIR)
+ (cd $(REPO) && sh autogen.sh && ./configure)
$(MAKE) -C $(REPO) clean
$(MAKE) -C $(REPO) all
$(MAKE) -C $(REPO) DESTDIR=$(STAGING) install
@@ -31,6 +32,7 @@
$(OUTPUT_API_PKG): $(OUTPUT_API_DEVEL_PKG)
rm -rf $(STAGING)
mkdir -p $(MY_MAIN_PACKAGES)
+ (cd $(REPO) && sh autogen.sh && ./configure)
$(MAKE) -C $(REPO) bins
$(MAKE) -C $(REPO) DESTDIR=$(STAGING) bininstall
tar -C $(STAGING) -jcf $@ .
@@ -38,6 +40,7 @@
$(OUTPUT_XAPI_DEVEL_PKG):
rm -rf $(STAGING)
mkdir -p $(MY_OUTPUT_DIR)
+ (cd $(REPO) && sh autogen.sh && ./configure)
$(MAKE) -C $(REPO) cleanxen
$(MAKE) -C $(REPO) allxen
$(MAKE) -C $(REPO) DESTDIR=$(STAGING) installxen
1 file changed, 3 insertions(+)
mk/Makefile | 3 +++
xen-api-libs.hg-4.patch
Description: Text Data
_______________________________________________
xen-api mailing list
xen-api@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/mailman/listinfo/xen-api
|
|
|
|
|