mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 10:51:40 +00:00
use Solaris-compatible shell syntax (bug #4567)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5961 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
6
Makefile
6
Makefile
@@ -396,7 +396,7 @@ asterisk.txt: asterisk.sgml
|
||||
|
||||
defaults.h: FORCE
|
||||
build_tools/make_defaults_h > $@.tmp
|
||||
if ! cmp -s $@.tmp $@ ; then \
|
||||
if cmp -s $@.tmp $@ ; then echo ; else \
|
||||
mv $@.tmp $@ ; \
|
||||
fi
|
||||
rm -f $@.tmp
|
||||
@@ -404,7 +404,7 @@ defaults.h: FORCE
|
||||
|
||||
include/asterisk/build.h:
|
||||
build_tools/make_build_h > $@.tmp
|
||||
if ! cmp -s $@.tmp $@ ; then \
|
||||
if cmp -s $@.tmp $@ ; then echo ; else \
|
||||
mv $@.tmp $@ ; \
|
||||
fi
|
||||
rm -f $@.tmp
|
||||
@@ -416,7 +416,7 @@ endif
|
||||
|
||||
include/asterisk/version.h: FORCE
|
||||
build_tools/make_version_h > $@.tmp
|
||||
if ! cmp -s $@.tmp $@ ; then \
|
||||
if cmp -s $@.tmp $@ ; then echo; else \
|
||||
mv $@.tmp $@ ; \
|
||||
fi
|
||||
rm -f $@.tmp
|
||||
|
Reference in New Issue
Block a user