Deleted Added
full compact
autogen.sh (362181) autogen.sh (369302)
1#!/bin/sh
2#
3#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the

--- 164 unchanged lines hidden (view full) ---

173 echo "Generating SWIG code..."
174 # Generate build-outputs.mk in non-release-mode, so that we can
175 # build the SWIG-related files
176 "$PYTHON" ./gen-make.py build.conf || gen_failed=1
177
178 # Build the SWIG-related files
179 make -f autogen-standalone.mk autogen-swig || gen_failed=1
180
1#!/bin/sh
2#
3#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the

--- 164 unchanged lines hidden (view full) ---

173 echo "Generating SWIG code..."
174 # Generate build-outputs.mk in non-release-mode, so that we can
175 # build the SWIG-related files
176 "$PYTHON" ./gen-make.py build.conf || gen_failed=1
177
178 # Build the SWIG-related files
179 make -f autogen-standalone.mk autogen-swig || gen_failed=1
180
181 # Remove the .swig_checked file
182 rm -f .swig_checked
181 # Remove the .swig_*checked files
182 rm -f .swig_checked .swig_pl_checked .swig_py_checked .swig_rb_checked
183fi
184
185if test -n "$SKIP_DEPS"; then
186 echo "Creating build-outputs.mk (no dependencies)..."
187 "$PYTHON" ./gen-make.py $RELEASE_ARGS -s build.conf || gen_failed=1
188else
189 echo "Creating build-outputs.mk..."
190 "$PYTHON" ./gen-make.py $RELEASE_ARGS build.conf || gen_failed=1

--- 57 unchanged lines hidden ---
183fi
184
185if test -n "$SKIP_DEPS"; then
186 echo "Creating build-outputs.mk (no dependencies)..."
187 "$PYTHON" ./gen-make.py $RELEASE_ARGS -s build.conf || gen_failed=1
188else
189 echo "Creating build-outputs.mk..."
190 "$PYTHON" ./gen-make.py $RELEASE_ARGS build.conf || gen_failed=1

--- 57 unchanged lines hidden ---