Browse Source

fix unreliable relative dir in favor of absolute path

Noah Vogt 1 năm trước cách đây
mục cha
commit
ea8e782b4a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      PKGBUILD

+ 1 - 1
PKGBUILD

@@ -132,7 +132,7 @@ build() {
   make images legacy-jre-image docs
   make images legacy-jre-image docs
 
 
   # https://bugs.openjdk.java.net/browse/JDK-8173610
   # https://bugs.openjdk.java.net/browse/JDK-8173610
-  find "../${_imgdir}" -iname '*.so' -exec chmod +x {} \;
+  find "${srcdir}/${_imgdir}" -iname '*.so' -exec chmod +x {} \;
 }
 }
 
 
 check() {
 check() {