Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
65c46aef
Commit
65c46aef
authored
Oct 24, 2008
by
dlezcano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added automatic generation of packages and repository tagging
parent
94253b66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
Makefile.am
Makefile.am
+9
-0
configure.in
configure.in
+8
-0
No files found.
Makefile.am
View file @
65c46aef
...
@@ -4,5 +4,14 @@ SUBDIRS = src test etc
...
@@ -4,5 +4,14 @@ SUBDIRS = src test etc
DIST_SUBDIRS
=
config src
test
etc
DIST_SUBDIRS
=
config src
test
etc
EXTRA_DIST
=
lxc.spec
EXTRA_DIST
=
lxc.spec
ChangeLog
::
@
echo
"Generating ChangeLog"
@
cvs2cl
rpm
:
dist
rpm
:
dist
rpmbuild
--clean
-ta
${
distdir
}
.tar.gz
rpmbuild
--clean
-ta
${
distdir
}
.tar.gz
release
:
rpm
@
sh ./release.sh
$(PACKAGE_NAME)
\
$(LXC_MAJOR_VERSION)
\
$(LXC_MINOR_VERSION)
\
$(LXC_MICRO_VERSION)
configure.in
View file @
65c46aef
...
@@ -24,6 +24,14 @@ if test "x$GCC" = "xyes"; then
...
@@ -24,6 +24,14 @@ if test "x$GCC" = "xyes"; then
CFLAGS="$CFLAGS -Wall"
CFLAGS="$CFLAGS -Wall"
fi
fi
LXC_MAJOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f1)
LXC_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2)
LXC_MICRO_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f3)
AC_SUBST(LXC_MAJOR_VERSION)
AC_SUBST(LXC_MINOR_VERSION)
AC_SUBST(LXC_MICRO_VERSION)
AC_CONFIG_FILES([
AC_CONFIG_FILES([
Makefile
Makefile
lxc.spec
lxc.spec
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment