diff options
-rw-r--r-- | package/opkg/files/postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/opkg/files/postinst b/package/opkg/files/postinst index 6aa8731ee..c2bb38187 100644 --- a/package/opkg/files/postinst +++ b/package/opkg/files/postinst @@ -1,3 +1,3 @@ #!/bin/sh -ln -sf "${IPKG_INSTROOT}/usr/lib/ipkg" "${IPKG_INSTROOT}/usr/lib/opkg" -ln -sf "${IPKG_INSTROOT}/etc/ipkg.conf" "${IPKG_INSTROOT}/etc/opkg.conf" +ln -sf "/usr/lib/ipkg" "${IPKG_INSTROOT}/usr/lib/opkg" +ln -sf "/etc/ipkg.conf" "${IPKG_INSTROOT}/etc/opkg.conf" |