Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
emulab-devel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emulab
emulab-devel
Commits
812d320f
Commit
812d320f
authored
19 years ago
by
Leigh B. Stoller
Browse files
Options
Downloads
Patches
Plain Diff
Add the call to setbuildinfo to set the build and version info.
parent
e8bb3b25
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GNUmakefile.in
+13
-2
13 additions, 2 deletions
GNUmakefile.in
with
13 additions
and
2 deletions
GNUmakefile.in
+
13
−
2
View file @
812d320f
...
...
@@ -38,13 +38,13 @@ install:
# For installation on boss node (okay, paper).
#
boss-install: install-schemacheck install-sitevarscheck install-dbfillcheck \
install-subdirs install-mkdirs
install-subdirs install-mkdirs
install-setbuildinfo
@echo "DON'T FORGET TO RUN A POST-INSTALL AS ROOT"
#
# Same target, with the install-schemacheck dependency omitted
#
boss-install-force: install-subdirs install-mkdirs
boss-install-force: install-subdirs install-mkdirs
install-setbuildinfo
@echo "DON'T FORGET TO RUN A POST-INSTALL AS ROOT"
post-install:
...
...
@@ -121,6 +121,7 @@ endif
ifneq ($(SYSTEM),CYGWIN_NT-5.1)
@$(MAKE) -C capture client
@$(MAKE) -C tip client
@$(MAKE) -C tools client
endif
@$(MAKE) -C sensors client
@$(MAKE) -C tmcd client
...
...
@@ -133,6 +134,7 @@ endif
ifneq ($(SYSTEM),CYGWIN_NT-5.1)
@$(MAKE) -C capture client-install
@$(MAKE) -C tip client-install
@$(MAKE) -C tools client-install
endif
@$(MAKE) -C sensors client-install
@$(MAKE) -C tmcd client-install
...
...
@@ -204,6 +206,15 @@ install-dbfillcheck:
@echo "Checking Initial DB Fill ..."
$(DBFILLCHECK)
ifeq ($(TBROOT),/usr/testbed)
SETBUILDINFO= cd $(OBJDIR)/utils && perl setbuildinfo
else
SETBUILDINFO= @echo "Skipping setbuildinfo, since prefix isn't /usr/testbed"
endif
install-setbuildinfo:
@echo "Setting the Build and Version info"
$(SETBUILDINFO)
clean: clean-subdirs
distclean: distclean-subdirs
rm -f Makeconf GNUmakefile config.h config.status config.cache config.log
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment