Skip to content

Commit 15b1355

Browse files
committed
build: silence result from /usr/bin/cmp
1 parent de7ce35 commit 15b1355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ include/gromox/paths.h: include/gromox/paths.h.in ${top_builddir}/config.status
373373
-e 's|#define LOCALSTATEDIR .*|#define LOCALSTATEDIR "${localstatedir}"|' \
374374
-e 's|#define PKGDATADIR .*|#define PKGDATADIR "${pkgdatadir}"|' \
375375
<${srcdir}/include/gromox/paths.h.in >"$@.tmp"
376-
${AM_V_at}if ! cmp "$@" "$@.tmp" 2>/dev/null; then mv "$@.tmp" "$@"; fi; rm -f "$@.tmp"
376+
${AM_V_at}if ! cmp "$@" "$@.tmp" >/dev/null 2>/dev/null; then mv "$@.tmp" "$@"; fi; rm -f "$@.tmp"
377377

378378
include/mapierr.cpp: include/gromox/mapierr.hpp tools/defs2php.sh tools/defs2php.pl
379379
${AM_V_GEN}${MKDIR_P} include/gromox

0 commit comments

Comments
 (0)