diff options
author | David Schleef <ds@schleef.org> | 2002-02-11 03:10:32 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2002-02-11 03:10:32 +0000 |
commit | 54c46b3d18731526af7b9eac15521827ef3a4a2a (patch) | |
tree | e733874e8e3908e2126fb38ab1eb53676a11ac97 /debian/mksnapshot | |
parent | 432a37d9a89a0f3d9d04cf9bd42102fcbe4e9327 (diff) |
mksnapshot: updated version and filenames. control.in: changed
dependency from kernel-headers to kernel-source packages. rules:
force HAS_MMU=true, change mipsel to mips, untar kernel-source
package include directory and use that as kernel source
Diffstat (limited to 'debian/mksnapshot')
-rwxr-xr-x | debian/mksnapshot | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/mksnapshot b/debian/mksnapshot index b0bbe4beb..6817e59c8 100755 --- a/debian/mksnapshot +++ b/debian/mksnapshot @@ -4,6 +4,7 @@ topdir=$(pwd) today=$(date +%Y%m%d) version=0.9.9 +dir=uclibc-${version}-cvs${today} mkdir -p ${topdir}/uclibc-tmp cd ${topdir}/uclibc-tmp @@ -14,21 +15,20 @@ then echo "$CVSROOT" 'Ay=0=a%0bZ' >>~/.cvspass fi -cvs co uClibc +cvs co -D ${dir} uClibc -cd ${topdir}/uclibc-tmp/uClibc/debian +cd ${topdir}/uclibc-tmp/${dir}/debian echo "uclibc (${version}-cvs${today}-1) unstable; urgency=low" >changelog.tmp echo >>changelog.tmp echo " * This is an automatic snapshot of uClibc CVS" >>changelog.tmp echo >>changelog.tmp echo " -- David Schleef <ds@schleef.org> $(date -R)" >>changelog.tmp +echo >>changelog.tmp cat changelog >>changelog.tmp mv changelog.tmp changelog cd ${topdir}/uclibc-tmp -mv uClibc uclibc-${version}-cvs${today} -tar -czf ../uclibc-${version}-cvs${today}.tgz uclibc-${version}-cvs${today} - +tar -czf ../uclibc_${version}-cvs${today}.orig.tar.gz ${dir} cd ${topdir} rm -rf uclibc-tmp |