소스 검색

fix unreliable relative dir in favor of absolute path

Noah Vogt 1 년 전
부모
커밋
ea8e782b4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      PKGBUILD

+ 1 - 1
PKGBUILD

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