Skip to content

Commit

Permalink
build: silence result from /usr/bin/cmp
Browse files Browse the repository at this point in the history
  • Loading branch information
jengelh committed Oct 8, 2024
1 parent de7ce35 commit 15b1355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ include/gromox/paths.h: include/gromox/paths.h.in ${top_builddir}/config.status
-e 's|#define LOCALSTATEDIR .*|#define LOCALSTATEDIR "${localstatedir}"|' \
-e 's|#define PKGDATADIR .*|#define PKGDATADIR "${pkgdatadir}"|' \
<${srcdir}/include/gromox/paths.h.in >"$@.tmp"
${AM_V_at}if ! cmp "$@" "$@.tmp" 2>/dev/null; then mv "$@.tmp" "$@"; fi; rm -f "$@.tmp"
${AM_V_at}if ! cmp "$@" "$@.tmp" >/dev/null 2>/dev/null; then mv "$@.tmp" "$@"; fi; rm -f "$@.tmp"

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

0 comments on commit 15b1355

Please sign in to comment.