summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy2022-03-26 14:09:32 +0300
committerVadim Yanitskiy2022-03-26 14:09:32 +0300
commita846c807e7d774658d23e0c511dc5e698987b330 (patch)
tree2805134565c8be5a602d474c7c78c07d396875f3
parenta560ff9807b9676b4bdb9503c6f0207e72cc6d30 (diff)
downloadaur-a846c807e7d774658d23e0c511dc5e698987b330.tar.gz
Fix line 25: cd: build: No such file or directory
-rw-r--r--PKGBUILD3
1 files changed, 1 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 229405f5748d..4c62ad5c1741 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,8 +21,7 @@ build() {
}
package() {
- cd "$_gitname"
- cd build
+ cd "$_gitname/build"
make DESTDIR=${pkgdir} install
}