Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,14 @@ src/yaz/yaz-version.h
AC_CONFIG_COMMANDS([default],[
sed -e 's%echo_source=yes%echo_source=no%g; s%src_root=.*$%%g; s%build_root=.*%%g' \
< yaz-config > src/yaz-config && chmod +x yaz-config src/yaz-config
diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null \
|| cp doc/local0.ent doc/local.ent
if ! diff doc/local.ent doc/local0.ent >/dev/null 2>/dev/null; then
# Reuse distributed entities through VPATH without rebuilding documentation.
if diff "$srcdir/doc/local.ent" doc/local0.ent >/dev/null 2>/dev/null; then
rm -f doc/local.ent
else
cp doc/local0.ent doc/local.ent
fi
fi
],[])
AC_OUTPUT

Expand Down
Loading