mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:32:43 +00:00 
			
		
		
		
	 f558a44610
			
		
	
	
		f558a44610
		
	
	
	
	
		
			
			BuildFuseExt2.sh was saying it should be run under /bin/sh but it is
using bash extensions like pushd/popd, ${BASH_SOURCE[0]}, etc. So just
run it under bash to avoid any potential issues.
		
	
			
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			634 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			634 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -e
 | |
| # This file will need to be run in bash.
 | |
| 
 | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | |
| export PATH="/usr/local/opt/m4/bin:$PATH"
 | |
| 
 | |
| die() {
 | |
|     echo "die: $*"
 | |
|     exit 1
 | |
| }
 | |
| 
 | |
| if [[ "$OSTYPE" != "darwin"* ]]; then
 | |
|     die "This script makes sense to be run only on macOS"
 | |
| fi
 | |
| 
 | |
| mkdir -p "$DIR"/Tarballs
 | |
| pushd "$DIR"/Tarballs
 | |
| 
 | |
| if [ ! -d fuse-ext2 ]; then
 | |
|     git clone https://github.com/alperakcan/fuse-ext2.git	
 | |
| fi
 | |
| 
 | |
| cd fuse-ext2
 | |
| ./autogen.sh
 | |
| CFLAGS="-I/usr/local/include/osxfuse/ -I/$(brew --prefix e2fsprogs)/include" LDFLAGS="-L$(brew --prefix e2fsprogs)/lib" ./configure
 | |
| make
 | |
| sudo make install
 | |
| popd
 |