[Bug 3324] New: [IcedTea7] Fix NSS_LIBDIR substitution in make_generic_profile.sh broken by PR1989

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon Feb 13 03:32:30 UTC 2017


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3324

            Bug ID: 3324
           Summary: [IcedTea7] Fix NSS_LIBDIR substitution in
                    make_generic_profile.sh broken by PR1989
           Product: IcedTea
           Version: 7-hg
          Hardware: all
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5
         Component: IcedTea
          Assignee: gnu.andrew at redhat.com
          Reporter: gnu.andrew at redhat.com
                CC: unassigned at icedtea.classpath.org

The change:

 if [ -x "${pkgconfig}" ] ; then
-  jdk_topdir=$(dirname ${BASH_SOURCE})/..
-  if [ ! -e ${jdk_topdir}/src ] ; then
-    jdk_topdir=$(hg root) ;
+  if [ "${NSS_LIBDIR}" = "" ] ; then
+    NSS_LIBDIR=$("${pkgconfig}" --variable=libdir nss)
   fi
-  sed -e "s#@NSS_LIBDIR@#$(${pkgconfig} --variable=libdir nss)#" \
-    ${jdk_topdir}/src/share/lib/security/nss.cfg.in \
-    > ${jdk_topdir}/src/share/lib/security/nss.cfg
 fi
+if [ "${NSS_LIBDIR}" = "" ] ; then
+  NSS_LIBDIR="/usr/lib";
+  echo "No NSS library directory detected.";
+fi
+echo "Using NSS_LIBDIR=${NSS_LIBDIR}"
+sed -e "s#@NSS_LIBDIR@#$()#" \
+  ${jdk_topdir}/src/share/lib/security/nss.cfg.in \
+  > ${jdk_topdir}/src/share/lib/security/nss.cfg

means that NSS_LIBDIR is now replaced with the empty string.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20170213/2cbeaaf4/attachment.html>


More information about the distro-pkg-dev mailing list