Skip to content
Snippets Groups Projects
Commit 78044761 authored by Leigh B Stoller's avatar Leigh B Stoller
Browse files

Fix the elabinelab-nogit target so that it will include

the protogeni/rspec-geni submodule. git archive does not
do that on its own.
parent 3b67893a
No related branches found
No related tags found
No related merge requests found
......@@ -483,8 +483,10 @@ elabinelab-git: elabinelab-scripts
-mkdir -p /share/emulab
rm -f /share/emulab/emulab-src.tar.gz
(cd $(SRCDIR); \
git archive --prefix=testbed/ HEAD | \
gzip -c >/share/emulab/emulab-src.tar.gz)
git archive HEAD > /share/emulab/emulab-src.tar)
tar rf /share/emulab/emulab-src.tar -C $(SRCDIR) \
--exclude=.git protogeni/rspec-geni
gzip /share/emulab/emulab-src.tar
else
elabinelab-nogit: elabinelab-scripts
-mkdir -p $(INSTALL_TOPDIR)/src
......@@ -495,8 +497,10 @@ elabinelab-git: elabinelab-scripts
-mkdir -p $(INSTALL_TOPDIR)/src
rm -f $(INSTALL_TOPDIR)/src/emulab-src.tar.gz
(cd $(SRCDIR); \
git archive --prefix=testbed/ HEAD | \
gzip -c > $(INSTALL_TOPDIR)/src/emulab-src.tar.gz)
git archive HEAD > $(INSTALL_TOPDIR)/src/emulab-src.tar)
tar rf $(INSTALL_TOPDIR)/src/emulab-src.tar -C $(SRCDIR) \
--exclude=.git protogeni/rspec-geni
gzip $(INSTALL_TOPDIR)/src/emulab-src.tar
endif
# How to recursively descend into subdirectories to make general
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment