change, remove some unnecessary changes to the configure script and makefiles that caused @NETCDF@ to be substituted since the existing mechanism (simply set NETCDFHOME in the environment) is more than sufficient. * Remove some unnecessary changes to the configure script and makefiles to cause @LIBTOOL@ to be substituted. We can simply pass in the right value via MAKE_ENV instead of hardcoding the value. * Fix a place where we weren't calling the compiler correctly, which broke the build of certain programs that should be installed and which were already listed in the PLIST. * Add --mode=MODE tags in the appropriate places to suppress the warnings from libtool that were cluttering the build log. Commit approved during the deep freeze by <agc>.
24 lines
556 B
Text
24 lines
556 B
Text
$NetBSD: patch-ac,v 1.4 2005/06/22 08:34:54 jlam Exp $
|
|
|
|
--- configure.orig 2001-04-18 05:28:26.000000000 -0400
|
|
+++ configure
|
|
@@ -2904,9 +2904,7 @@ EOF
|
|
|
|
fi
|
|
|
|
-subdirs="src/mex"
|
|
-
|
|
-subdirs="src/mex src/xgrid"
|
|
+subdirs="src/xgrid"
|
|
|
|
trap '' 1 2 15
|
|
cat > confcache <<\EOF
|
|
@@ -3328,7 +3326,7 @@ if test "$no_recursion" != yes; then
|
|
esac
|
|
done
|
|
|
|
- for ac_config_dir in src/mex src/xgrid; do
|
|
+ for ac_config_dir in src/xgrid; do
|
|
|
|
# Do not complain, so a configure script can configure whichever
|
|
# parts of a large source tree are present.
|