dect
/
asterisk
Archived
13
0
Fork 0

Don't overwrite unchanged files

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4300 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-11-20 06:47:33 +00:00
parent fc16142d07
commit b4febd4073
1 changed files with 4 additions and 0 deletions

View File

@ -451,6 +451,10 @@ samples: all datafiles adsi
for x in configs/*.sample; do \
if [ -f $(DESTDIR)$(ASTETCDIR)/`basename $$x .sample` ]; then \
if [ "$(OVERWRITE)" = "y" ]; then \
if cmp -s $(DESTDIR)$(ASTETCDIR)/`basename $$x .sample` $$x ; then \
echo "Config file $$x is unchanged"; \
continue; \
fi ; \
mv -f $(DESTDIR)$(ASTETCDIR)/`basename $$x .sample` $(DESTDIR)$(ASTETCDIR)/`basename $$x .sample`.old ; \
else \
echo "Skipping config file $$x"; \