make: disable guile

This commit is contained in:
Luis
2023-03-11 19:37:20 +00:00
parent 74043eaaae
commit c0046ecaac
2 changed files with 6 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
make-4.4.1-1
make-4.4.1-2
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/make

View File

@@ -2,14 +2,15 @@
name=make
version=4.4.1
release=1
release=2
source="https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz"
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
./configure \
--prefix=/usr \
--disable-nls \
--without-guile
make
make DESTDIR=$PKG install
}