summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-02-19 18:01:13 (UTC)
committer kergoth <kergoth>2003-02-19 18:01:13 (UTC)
commitc815825a0368257defb64d5f8ce5e2a2f2da93c6 (patch) (side-by-side diff)
tree3d81742c8a5ba528abeee78ae25ebf5b3413e98f
parent5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db (diff)
downloadopie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.zip
opie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.tar.gz
opie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.tar.bz2
Fix a bug that prevented ldconfig execution in postinst
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xlibopie/libopie1.postinst2
-rwxr-xr-xlibrary/libqpe1.postinst2
-rwxr-xr-xqt/libqt2-emb.postinst2
3 files changed, 3 insertions, 3 deletions
diff --git a/libopie/libopie1.postinst b/libopie/libopie1.postinst
index 50d922c..0c37b3d 100755
--- a/libopie/libopie1.postinst
+++ b/libopie/libopie1.postinst
@@ -1,4 +1,4 @@
#!/bin/sh
-[ -x ldconfig ] && ldconfig
+[ -x /sbin/ldconfig ] && /sbin/ldconfig
exit 0
diff --git a/library/libqpe1.postinst b/library/libqpe1.postinst
index 50d922c..0c37b3d 100755
--- a/library/libqpe1.postinst
+++ b/library/libqpe1.postinst
@@ -1,4 +1,4 @@
#!/bin/sh
-[ -x ldconfig ] && ldconfig
+[ -x /sbin/ldconfig ] && /sbin/ldconfig
exit 0
diff --git a/qt/libqt2-emb.postinst b/qt/libqt2-emb.postinst
index 50d922c..0c37b3d 100755
--- a/qt/libqt2-emb.postinst
+++ b/qt/libqt2-emb.postinst
@@ -1,4 +1,4 @@
#!/bin/sh
-[ -x ldconfig ] && ldconfig
+[ -x /sbin/ldconfig ] && /sbin/ldconfig
exit 0