mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			354 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			354 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh                   
 | 
						|
 | 
						|
# debug
 | 
						|
#set -x
 | 
						|
 | 
						|
# stop on errors
 | 
						|
set -e
 | 
						|
 | 
						|
for package in . ./innobase
 | 
						|
do
 | 
						|
	(cd $package
 | 
						|
	rm -rf config.cache autom4te.cache
 | 
						|
	aclocal
 | 
						|
	autoheader
 | 
						|
	libtoolize --force
 | 
						|
	aclocal
 | 
						|
	automake --add-missing --force-missing
 | 
						|
	autoconf)
 | 
						|
done
 | 
						|
 | 
						|
#rm -rf ./bdb/build_unix/config.cache ./bdb/dist/autom4te.cache
 | 
						|
#(cd ./bdb/dist && sh s_all)
 |