author | kergoth <kergoth> | 2003-02-19 18:01:13 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-02-19 18:01:13 (UTC) |
commit | c815825a0368257defb64d5f8ce5e2a2f2da93c6 (patch) (unidiff) | |
tree | 3d81742c8a5ba528abeee78ae25ebf5b3413e98f | |
parent | 5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db (diff) | |
download | opie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.zip opie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.tar.gz opie-c815825a0368257defb64d5f8ce5e2a2f2da93c6.tar.bz2 |
Fix a bug that prevented ldconfig execution in postinst
-rwxr-xr-x | libopie/libopie1.postinst | 2 | ||||
-rwxr-xr-x | library/libqpe1.postinst | 2 | ||||
-rwxr-xr-x | qt/libqt2-emb.postinst | 2 |
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 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | [ -x ldconfig ] && ldconfig | 3 | [ -x /sbin/ldconfig ] && /sbin/ldconfig |
4 | exit 0 | 4 | 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 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | [ -x ldconfig ] && ldconfig | 3 | [ -x /sbin/ldconfig ] && /sbin/ldconfig |
4 | exit 0 | 4 | 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 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | [ -x ldconfig ] && ldconfig | 3 | [ -x /sbin/ldconfig ] && /sbin/ldconfig |
4 | exit 0 | 4 | exit 0 |