|
@@ -31,7 +31,7 @@ define CA_CERTIFICATES_INSTALL_TARGET_CMDS
|
|
# Create symlinks to certificates under /etc/ssl/certs
|
|
# Create symlinks to certificates under /etc/ssl/certs
|
|
# and generate the bundle
|
|
# and generate the bundle
|
|
cd $(TARGET_DIR) ;\
|
|
cd $(TARGET_DIR) ;\
|
|
- for i in `find usr/share/ca-certificates -name "*.crt"` ; do \
|
|
|
|
|
|
+ for i in `find usr/share/ca-certificates -name "*.crt" | LC_COLLATE=C sort` ; do \
|
|
ln -sf ../../../$$i etc/ssl/certs/`basename $${i} .crt`.pem ;\
|
|
ln -sf ../../../$$i etc/ssl/certs/`basename $${i} .crt`.pem ;\
|
|
cat $$i ;\
|
|
cat $$i ;\
|
|
done >$(@D)/ca-certificates.crt
|
|
done >$(@D)/ca-certificates.crt
|