diff options
author | Matt Zimmerman <matt.zimmerman@canonical.com> | 2004-11-13 23:53:02 +0000 |
---|---|---|
committer | Matt Zimmerman <matt.zimmerman@canonical.com> | 2004-11-13 23:53:02 +0000 |
commit | 09c1228132d9487b2f36be08b5239f3d65fca1aa (patch) | |
tree | 5b88ca65fa2e7c012460bf775cdcaf5006029abf | |
parent | 9659ba7c34d056205c7687158c2d2b967cc6f392 (diff) |
Add arch-build target
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 53c7ec4aa..8e4316f43 100644 --- a/debian/changelog +++ b/debian/changelog @@ -26,8 +26,9 @@ apt (0.5.28) hoary; urgency=low packages - Patch from Michael Vogt to add an optional cron job which can run apt-get update periodically + * Add arch-build target to debian/rules - -- Matt Zimmerman <mdz@canonical.com> Sat, 13 Nov 2004 15:31:45 -0800 + -- Matt Zimmerman <mdz@debian.org> Sat, 13 Nov 2004 15:52:20 -0800 apt (0.5.27) unstable; urgency=high diff --git a/debian/rules b/debian/rules index 2dbb9707f..457bcf5ff 100755 --- a/debian/rules +++ b/debian/rules @@ -326,3 +326,10 @@ cvs-build: cvs-mkul: -mkdir -p ../upload-$(APT_DEBVER) cp `find debian/cvs-build -maxdepth 1 -type f` ../upload-$(APT_DEBVER) + +arch-build: + rm -rf debian/arch-build + mkdir -p debian/arch-build/apt-$(APT_DEBVER) + tla inventory -s | xargs cp -a --parents --target=debian/arch-build/apt-$(APT_DEBVER) + $(MAKE) -C debian/arch-build/apt-$(APT_DEBVER) startup doc + (cd debian/arch-build/apt-$(APT_DEBVER); $(DEB_BUILD_PROG)) |