author | kergoth <kergoth> | 2003-02-19 18:01:13 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-02-19 18:01:13 (UTC) |
commit | c815825a0368257defb64d5f8ce5e2a2f2da93c6 (patch) (side-by-side diff) | |
tree | 3d81742c8a5ba528abeee78ae25ebf5b3413e98f /library | |
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 | library/libqpe1.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
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 |