inclhack.tpl: Only install assert.h conditionally.

* fixinc/inclhack.tpl: Only install assert.h conditionally.
        * fixinc/inclhack.sh: Regenerated.
        * fixinc/fixincl.sh: Regenerated.

From-SVN: r28660
This commit is contained in:
Bruce Korb 1999-08-11 07:18:16 +00:00 committed by Jeff Law
parent f486d34892
commit 5c2a59b8b0
4 changed files with 27 additions and 15 deletions

View File

@ -1,3 +1,9 @@
1999-08-01 Bruce Korb <ddsinc09@ix.netcom.com>
* fixinc/inclhack.tpl: Only install assert.h conditionally.
* fixinc/inclhack.sh: Regenerated.
* fixinc/fixincl.sh: Regenerated.
Wed Aug 11 00:34:22 1999 Joe Buck <jbuck@synopsys.com>
* invoke.texi: s/GNU CC/GCC/ for consistency with gcc.texi.

View File

@ -406,8 +406,10 @@ done
#
# # # # # # # # # # # # # # # # # # # # #
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
if [ x${INSTALL_ASSERT_H} != x ] && [ -f ${srcdir}/assert.h ]
then
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
fi

View File

@ -3093,8 +3093,10 @@ done
#
# # # # # # # # # # # # # # # # # # # # #
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
if [ x${INSTALL_ASSERT_H} != x ] && [ -f ${srcdir}/assert.h ]
then
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
fi

View File

@ -416,11 +416,13 @@ done
#
# # # # # # # # # # # # # # # # # # # # #
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
[=
if [ x${INSTALL_ASSERT_H} != x ] && [ -f ${srcdir}/assert.h ]
then
cd $ORIGDIR
rm -f include/assert.h
cp ${srcdir}/assert.h include/assert.h || exit 1
chmod a+r include/assert.h
fi[=
# Make the output file executable
# =][=