2001-03-19 23:36:52 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
echo "#!/bin/sh" > customize.$$
|
|
|
|
echo "sed \\" > customize.$$
|
|
|
|
chmod +x customize.$$
|
|
|
|
|
|
|
|
################################################################
|
2001-08-12 18:08:30 +02:00
|
|
|
# $Id: configure,v 1.3 2001-08-12 16:08:30 hjp Exp $
|
|
|
|
# find a find which understands -printf
|
2001-03-19 23:36:52 +01:00
|
|
|
#
|
|
|
|
touch find-printf.$$.1
|
|
|
|
today=`date '+%Y-%m-%d'`
|
|
|
|
for i in /bin/find /usr/bin/find /usr/local/bin/find
|
|
|
|
do
|
2001-03-19 23:48:23 +01:00
|
|
|
if [ "`$i find-printf.$$.1 -printf '%TY-%Tm-%Td %p'`" = "$today find-printf.$$.1" ]
|
2001-03-19 23:36:52 +01:00
|
|
|
then
|
|
|
|
echo $i works
|
|
|
|
find="$i"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ -z "$find" ]
|
|
|
|
then
|
|
|
|
echo could not find a working find command, sorry.
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo " -e 's,@@@find@@@,$find,g' \\" >> customize.$$
|
|
|
|
rm find-printf.$$.?
|
|
|
|
|
2001-03-19 23:48:23 +01:00
|
|
|
# $Log: configure,v $
|
2001-08-12 18:08:30 +02:00
|
|
|
# Revision 1.3 2001-08-12 16:08:30 hjp
|
|
|
|
# Automatic rebuild of configure.
|
2001-03-19 23:48:23 +01:00
|
|
|
#
|
2001-08-12 18:08:30 +02:00
|
|
|
# Revision 1.2 2001/03/19 22:50:28 hjp
|
|
|
|
# Fixed description.
|
2001-03-19 23:48:23 +01:00
|
|
|
#
|
|
|
|
# Revision 1.1 2001/03/19 22:44:39 hjp
|
|
|
|
# *** empty log message ***
|
|
|
|
#
|
2001-03-19 23:36:52 +01:00
|
|
|
################################################################
|
|
|
|
# finish
|
|
|
|
# Add trailing newline and rename temp file to final name
|
|
|
|
#
|
|
|
|
echo >> customize.$$
|
|
|
|
|
|
|
|
mv customize.$$ customize
|
|
|
|
|