mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
f489e969f0
Unfortunately this patch is hard to split up into smaller chunks. Our build system and the associated automake/autoconf/libtool macros has been left untouched for a while, and could use a refresher. * Upgrade ltmain.sh to the latest version * Move away from a huge acinclude.m4 directory to using individual files in the m4/ subdirectory, suggested by upstream automake documentation * Update all macros to their latest available version * Adjust Makefile.am and autogen.sh to accommodate m4/ subdirectory Signed-off-by: Dan McGee <dan@archlinux.org>
7 lines
78 B
Bash
Executable File
7 lines
78 B
Bash
Executable File
#!/bin/sh -xu
|
|
|
|
aclocal -I m4 --install
|
|
autoheader
|
|
automake --foreign
|
|
autoconf
|