summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdigikam/build/digikam.SlackBuild6
-rwxr-xr-xsim-im/build/sim-im.SlackBuild6
2 files changed, 8 insertions, 4 deletions
diff --git a/digikam/build/digikam.SlackBuild b/digikam/build/digikam.SlackBuild
index fc652c18..5b1d35a9 100755
--- a/digikam/build/digikam.SlackBuild
+++ b/digikam/build/digikam.SlackBuild
@@ -34,6 +34,8 @@
# * Initial build.
# 0.9.2-1: 17/Sep/2007 by Eric Hameleers <alien@slackware.com>
# * Overdue update.
+# 0.9.2-2: 30/Sep/2007 by Eric Hameleers <alien@slackware.com>
+# * Fix the chroot command so that it actually works.
#
# Run 'sh digikam.SlackBuild --cleanup' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -46,7 +48,7 @@
PRGNAM=digikam
VERSION=${VERSION:-0.9.2}
ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
DOCS="AUTHORS ChangeLog COPYING HACKING INSTALL NEWS README RELEASE.rev TODO"
@@ -180,7 +182,7 @@ fi
mkdir -p $PKG/install
cat <<-EOT > $PKG/install/doinst.sh
if [ -x usr/bin/update-desktop-database ]; then
- chroot /usr/bin/update-desktop-database \
+ chroot . /usr/bin/update-desktop-database \
${KDEPREF}/share/applications/kde >/dev/null 2>&1
fi
diff --git a/sim-im/build/sim-im.SlackBuild b/sim-im/build/sim-im.SlackBuild
index e6992e5b..4a5cc127 100755
--- a/sim-im/build/sim-im.SlackBuild
+++ b/sim-im/build/sim-im.SlackBuild
@@ -37,6 +37,8 @@
# 0.9.4.3-2: 21/May/2007 by Eric Hameleers <alien@slackware.com>
# * Run update-desktop-database in doinst.sh so that sim-im will
# appear in your desktop menu right away.
+# 0.9.4.3-3: 30/sep/2007 by Eric Hameleers <alien@slackware.com>
+# * Fix the 'chroot' command line so that it actually works.
#
# Run 'sh sim-im.SlackBuild --cleanup' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -51,7 +53,7 @@ PRGNAM=sim-im
SRCNAM=sim
VERSION=${VERSION:-0.9.4.3}
ARCH=${ARCH:-i486}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-3}
DOCS="*.txt AUTHORS* COPYING ChangeLog INSTALL README* TODO*"
@@ -212,7 +214,7 @@ sed -i -e "s#^Icon=sim.png#Icon=/usr/share/pixmaps/sim.png#" \
mkdir -p $PKG/install
cat <<-EOTT > $PKG/install/doinst.sh
if [ -x usr/bin/update-desktop-database ]; then
- chroot /usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1
+ chroot . /usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1
fi
EOTT