diff --git a/base/musl/musl.SMBuild b/base/musl/musl.SMBuild index 7ff64a7..0b135ac 100755 --- a/base/musl/musl.SMBuild +++ b/base/musl/musl.SMBuild @@ -34,21 +34,16 @@ build() { ( cd $pkg/lib # Remove the symlink, it'll break upgrades and make the system useless - rm ld-musl-$ARCH.so.1 - # Copy the libc.so as the $ARCH-specific file - cp libc.so ld-musl-$ARCH.so.1 + rm ld-musl-$arch.so.1 + # Copy the libc.so as the $arch-specific file + cp libc.so ld-musl-$arch.so.1 ) cp COPYRIGHT $pkgdocs/ cp $srcdir/{cdefs.h,queue.h,stab.h,tree.h} $pkg/include/sys/ - [ "$ARCH" = "aarch64" ] && install -Dm 644 $srcdir/asm.hwcap.h $pkg/include/asm/hwcap.h - - #( - #mkdir -p $pkg/bin - #cd $pkg/lib ; ln -sf libc.so ld-musl-$ARCH.so.1 - #) + [ "$arch" = "aarch64" ] && install -Dm 644 $srcdir/asm.hwcap.h $pkg/include/asm/hwcap.h mkfinalpkg } diff --git a/base/perl/perl.SMBuild b/base/perl/perl.SMBuild index 791e797..f8e11e5 100755 --- a/base/perl/perl.SMBuild +++ b/base/perl/perl.SMBuild @@ -14,6 +14,13 @@ build() { cd $app-$version fixbuilddirpermissions + # /usr/local/include directory, if it contains any headers, + # might interfere with the compile because our GCC toolchain looks into that directory, in which case we abort. + if [ -d /usr/local/include ] ; then + echo "/usr/local/include directory may cause this perl compilation to fail. Kindly remove it. Aborting!" + exit 1 + fi + sed '1i#define PERL_BUILD_DATE "01.01.18 00:00:00"' -i perl.c sed -e 's;myuname=`$u;myuname="linux host" #`$u;' \ diff --git a/net/mutt/mutt.SMBuild b/net/mutt/mutt.SMBuild index f99ce51..61f372c 100755 --- a/net/mutt/mutt.SMBuild +++ b/net/mutt/mutt.SMBuild @@ -1,7 +1,7 @@ app=mutt version=1.10.1 build=1sml -homepage="www.mutt.org" +homepage="https://www.mutt.org" download="http://ftp.mutt.org/pub/mutt/mutt-1.10.1.tar.gz" desc="Advanced text-mode mail client" requires="netbsd-curses zlib libidn openssl cyrus-sasl "