author | kergoth <kergoth> | 2002-02-21 23:41:37 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-02-21 23:41:37 (UTC) |
commit | a1f885544c3415f3bb89cadb8b17ab080090fe22 (patch) (unidiff) | |
tree | a9a13d87005fe0973fac2759a602826ae62e240f /mkipks | |
parent | 7fd3f2ce443a136079bb9230b90b31c8d172b16a (diff) | |
download | opie-a1f885544c3415f3bb89cadb8b17ab080090fe22.zip opie-a1f885544c3415f3bb89cadb8b17ab080090fe22.tar.gz opie-a1f885544c3415f3bb89cadb8b17ab080090fe22.tar.bz2 |
Altered version_cvs datestamp handling, and added permissions squashing when it runs tar.
-rwxr-xr-x | mkipks | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -16,3 +16,4 @@ if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h | |||
16 | then | 16 | then |
17 | VERSION_CVS="_$(date +%Y%m%d)" | 17 | VERSION_CVS="$(date +%Y%m%d)" |
18 | SUB_VERSION=$VERSION_CVS | ||
18 | else | 19 | else |
@@ -203,5 +204,7 @@ do | |||
203 | chown -R root.root $TDIR | 204 | chown -R root.root $TDIR |
205 | else | ||
206 | echo "Warning: You are not root. Unable to squash permissions." | ||
204 | fi | 207 | fi |
205 | ( cd $CTRLDIR; tar cfz ../control.tar.gz ./*; ) | 208 | ( cd $CTRLDIR; tar --owner root --group root cfz ../control.tar.gz ./*; ) |
206 | ( cd $DATADIR; tar cfz ../data.tar.gz ./*; ) | 209 | ( cd $DATADIR; tar --owner root --group root cfz ../data.tar.gz ./*; ) |
207 | ( cd $TDIR; rm -rf control data; tar cf - ./debian-binary ./control.tar.gz ./data.tar.gz; ) | gzip >$RDIR/$package.ipk | 210 | ( cd $TDIR; rm -rf control data; tar cf - ./debian-binary ./control.tar.gz ./data.tar.gz; ) | gzip >$RDIR/$package.ipk |