diff options
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | rpc/xdr/gen/Makefile.am | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index 8eded379039..568ac397a7b 100644 --- a/configure.ac +++ b/configure.ac @@ -25,14 +25,6 @@ if make --help 2>&1 | grep -q no-print-directory; then AM_MAKEFLAGS="$AM_MAKEFLAGS --no-print-directory"; fi -if make --help 2>&1 | grep -q quiet; then - AM_MAKEFLAGS="$AM_MAKEFLAGS --quiet" -fi - -if libtool --help 2>&1 | grep -q quiet; then - AM_LIBTOOLFLAGS="--quiet"; -fi - AC_CONFIG_HEADERS([config.h site.h]) AC_CONFIG_FILES([Makefile diff --git a/rpc/xdr/gen/Makefile.am b/rpc/xdr/gen/Makefile.am index c253e38275d..df379b80130 100644 --- a/rpc/xdr/gen/Makefile.am +++ b/rpc/xdr/gen/Makefile.am @@ -18,14 +18,14 @@ xdrdst=$(top_builddir)/rpc/xdr/src # could use a '-' (i.e. -@rpcgen ...) and suffer with noisy warnings # in the build. Or we do this crufty thing instead. $(XDRSOURCES): $(XDRGENFILES) - if [ ! -e $(xdrdst)/$@ -o $(@:.c=.x) -nt $(xdrdst)/$@ ]; then \ + @if [ ! -e $(xdrdst)/$@ -o $(@:.c=.x) -nt $(xdrdst)/$@ ]; then \ rpcgen -c -o $(xdrdst)/$@ $(@:.c=.x) ;\ fi # d*mn sed in netbsd6 doesn't do -i (inline) # (why are we still running smoke on netbsd6 and not netbsd7?) $(XDRHEADERS): $(XDRGENFILES) - if [ ! -e $(xdrdst)/$@ -o $(@:.h=.x) -nt $(xdrdst)/$@ ]; then \ + @if [ ! -e $(xdrdst)/$@ -o $(@:.h=.x) -nt $(xdrdst)/$@ ]; then \ rpcgen -h -o $(@:.h=.tmp) $(@:.h=.x) && \ sed -e '/#ifndef/ s/-/_/g' -e '/#define/ s/-/_/g' \ -e '/#endif/ s/-/_/' -e 's/TMP_/H_/g' \ |