mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
* debian/rules, README: LP: #854868
- refactor autoconf into debian/rules
This commit is contained in:
commit
3b99c3c215
3 changed files with 7 additions and 5 deletions
4
README
4
README
|
@ -7,9 +7,7 @@ install locally, using the following instructions...
|
||||||
|
|
||||||
0) If you have pulled the source from the upstream bzr repository
|
0) If you have pulled the source from the upstream bzr repository
|
||||||
(bzr branch lp:byobu) then you first need to run:
|
(bzr branch lp:byobu) then you first need to run:
|
||||||
aclocal
|
./debian/rules autoconf
|
||||||
automake --add-missing --copy
|
|
||||||
autoconf
|
|
||||||
1) Or download the latest version (>= 3.0) from:
|
1) Or download the latest version (>= 3.0) from:
|
||||||
https://launchpad.net/byobu/+download
|
https://launchpad.net/byobu/+download
|
||||||
2) Extract:
|
2) Extract:
|
||||||
|
|
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -23,6 +23,8 @@ byobu (4.43) unreleased; urgency=low
|
||||||
[ Daniel Hahler ]
|
[ Daniel Hahler ]
|
||||||
* usr/bin/byobu, usr/bin/byobu-launcher-install, usr/bin/byobu-
|
* usr/bin/byobu, usr/bin/byobu-launcher-install, usr/bin/byobu-
|
||||||
launcher-uninstall: Use BYOBU_PREFIX explicitly, LP: #861302
|
launcher-uninstall: Use BYOBU_PREFIX explicitly, LP: #861302
|
||||||
|
* debian/rules, README: LP: #854868
|
||||||
|
- refactor autoconf into debian/rules
|
||||||
|
|
||||||
[Scott Moser]
|
[Scott Moser]
|
||||||
* usr/lib/byobu/.shutil: fix rounding error in fpdiv, LP: #869282
|
* usr/lib/byobu/.shutil: fix rounding error in fpdiv, LP: #869282
|
||||||
|
|
6
debian/rules
vendored
6
debian/rules
vendored
|
@ -22,12 +22,14 @@ update-pot:
|
||||||
msgmerge $${po} po/${PKG}.pot -o $${po} ; \
|
msgmerge $${po} po/${PKG}.pot -o $${po} ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
prebuild: clean
|
autoconf: clean
|
||||||
dh_testdir
|
dh_testdir
|
||||||
cp debian/changelog ChangeLog
|
cp debian/changelog ChangeLog
|
||||||
aclocal
|
aclocal
|
||||||
automake --add-missing
|
automake --add-missing --copy
|
||||||
autoconf
|
autoconf
|
||||||
|
|
||||||
|
prebuild: autoconf
|
||||||
./configure --prefix=/usr
|
./configure --prefix=/usr
|
||||||
|
|
||||||
build: prebuild
|
build: prebuild
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue