Also need automake installed.
This commit is contained in:
		@@ -5,7 +5,7 @@ variables:
 | 
				
			|||||||
build_project:
 | 
					build_project:
 | 
				
			||||||
  stage: build
 | 
					  stage: build
 | 
				
			||||||
  script:
 | 
					  script:
 | 
				
			||||||
    - "( brew install libsodium json-c autoconf )"
 | 
					    - "( brew install libsodium json-c autoconf automake )"
 | 
				
			||||||
    - "( ./lib/bin/build_libsodium-macos )"
 | 
					    - "( ./lib/bin/build_libsodium-macos )"
 | 
				
			||||||
    - "( cd ./platform-independent/c/cli && ./clean && targets=all ./build && ./mpw-tests && ./mpw-cli-tests )"
 | 
					    - "( cd ./platform-independent/c/cli && ./clean && targets=all ./build && ./mpw-tests && ./mpw-cli-tests )"
 | 
				
			||||||
    - "( cd ./gradle && ./gradlew --info clean test )"
 | 
					    - "( cd ./gradle && ./gradlew --info clean test )"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,10 +50,10 @@ _initialize() {
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
# Check if all tools needed for the default implementations are available.
 | 
					# Check if all tools needed for the default implementations are available.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# By default, this will check for `autoreconf`.
 | 
					# By default, this will check for `automake` (for aclocal) and `autoconf` (for autoreconf).
 | 
				
			||||||
initialize_needs() { _initialize_needs "$@"; }
 | 
					initialize_needs() { _initialize_needs "$@"; }
 | 
				
			||||||
_initialize_needs() {
 | 
					_initialize_needs() {
 | 
				
			||||||
    needs autoreconf
 | 
					    needs automake autoconf
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# clean <prefix> <platform>
 | 
					# clean <prefix> <platform>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user