From 67d1d0b292553af550219d770cbd5c00987d8b8b Mon Sep 17 00:00:00 2001 From: wimpie Date: Sun, 09 Jan 2005 03:02:21 +0000 Subject: CONTROL files : reset version to 'standard' format (partly rolls back my drastic all-applicatoins-same-version change) now format is x.y(.z)$EXTRAVERSION where x.y (and aptionally .z) are x : major version y : minor version z : application patch and extra version is seconds-since-epoch this value can be used to automatically upgrade versions with minor changes (without manual update of the control file) --- (limited to 'scripts/mkipkg') diff --git a/scripts/mkipkg b/scripts/mkipkg index a336371..2f020f4 100755 --- a/scripts/mkipkg +++ b/scripts/mkipkg @@ -244,8 +244,8 @@ createFileList() stripFile() { - if [ -f $1 -a -x $1 ]; then - $strip --strip-all $1 + if [ ! -h $1 -a -f $1 -a -x $1 ]; then + $strip -p --strip-all $1 fi } @@ -276,7 +276,11 @@ substFile() stripFiles() { for f in $1; do - stripFile ./$f + # do not strip links + if [ ! -h ./$f ] + then + stripFile ./$f + fi done } -- cgit v0.9.0.2