mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	* Make aclocal look in LLVM's autoconf/m4 directory for macros * Don't force generation of missing files git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20307 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			31 lines
		
	
	
		
			896 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			896 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| die () {
 | |
| 	echo "$@" 1>&2
 | |
| 	exit 1
 | |
| }
 | |
| test -d autoconf && test -f autoconf/configure.ac && cd autoconf
 | |
| test -f configure.ac || die "Can't find 'autoconf' dir; please cd into it first"
 | |
| autoconf --version | egrep '2\.5[0-9]' > /dev/null
 | |
| if test $? -ne 0 ; then
 | |
| 	die "Your autoconf was not detected as being 2.5x"
 | |
| fi
 | |
| cwd=`pwd`
 | |
| if test -d ../../../autoconf/m4 ; then
 | |
|   cd ../../../autoconf/m4
 | |
|   llvm_m4=`pwd`
 | |
|   cd $cwd
 | |
| elif test -d ../../llvm/autoconf/m4 ; then
 | |
|   cd ../../llvm/autoconf/m4
 | |
|   llvm_m4=`pwd`
 | |
|   cd $cwd
 | |
| else
 | |
|   die "Can't find the LLVM autoconf/m4 directory. The project should be checked out to projects directory"
 | |
| fi
 | |
| echo "Regenerating aclocal.m4 with aclocal"
 | |
| rm -f aclocal.m4
 | |
| aclocal -I $llvm_m4 -I "$llvm_m4/.." || die "aclocal failed"
 | |
| echo "Regenerating configure with autoconf 2.5x"
 | |
| autoconf --warnings=all -o ../configure configure.ac || die "autoconf failed"
 | |
| cd ..
 | |
| exit 0
 |