Skip to content

Commit f755d66

Browse files
authored
fix attr and acl build without autogen.sh (if we don't download from git) (#718)
1 parent 22a438e commit f755d66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SPC/builder/unix/library/attr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function build(): void
2020
'LIBS' => $this->getLibExtraLibs(),
2121
])
2222
->execWithEnv('libtoolize --force --copy')
23-
->execWithEnv('./autogen.sh')
23+
->execWithEnv('./autogen.sh || autoreconf -if')
2424
->execWithEnv('./configure --prefix= --enable-static --disable-shared --with-pic --disable-nls')
2525
->execWithEnv("make -j {$this->builder->concurrency}")
2626
->exec('make install DESTDIR=' . BUILD_ROOT_PATH);

src/SPC/builder/unix/library/libacl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function build(): void
3636
'LIBS' => $this->getLibExtraLibs(),
3737
])
3838
->execWithEnv('libtoolize --force --copy')
39-
->execWithEnv('./autogen.sh')
39+
->execWithEnv('./autogen.sh || autoreconf -if')
4040
->execWithEnv('./configure --prefix= --enable-static --disable-shared --disable-tests --disable-nls')
4141
->execWithEnv("make -j {$this->builder->concurrency}")
4242
->exec('make install DESTDIR=' . BUILD_ROOT_PATH);

0 commit comments

Comments
 (0)