Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions api-contribs/bigloo-with-dbus/configure
Original file line number Diff line number Diff line change
Expand Up @@ -2056,7 +2056,7 @@ if [ $action = "all" -o $action = "bigloo_config" ]; then
rm -f $p 2> /dev/null
rel=`echo $release | sed -e "s|[.]|_|"`;
cat autoconf/`basename $p`.in \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit), `date`|" \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit)|" \
-e "s|@BGL_RELEASE@|BGL_$rel|" \
-e "s|@BGL_RELEASE_NUMBER@|$release|" \
-e "s|@BGL_SPECIFIC_VERSION@|$specific|" \
Expand Down Expand Up @@ -2201,7 +2201,6 @@ if [ $action = "all" -o $action = "bigloo_config_el" ]; then

rm -f $bigloo_config_el 2> /dev/null
echo ";; Automatically generated file (don't edit) */" > $bigloo_config_el
echo ";; `date`" >> $bigloo_config_el
echo "" >> $bigloo_config_el
echo "(provide 'bmacs-config)" >> $bigloo_config_el
echo "(defvar bmacs-docdir \"$docdir\")" >> $bigloo_config_el
Expand Down Expand Up @@ -2230,7 +2229,6 @@ if [ $action = "all" -o $action = "Makefile.config" ]; then
# We first cleanup the file
rm -f $makefile_cfg 2> /dev/null
echo "# automatically generated, don't edit" > $makefile_cfg
echo "# `date`" >> $makefile_cfg
echo "" >> $makefile_cfg

# The Bigloo release number
Expand Down
2 changes: 1 addition & 1 deletion autoconf/runtest.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# Generated file, don't edit, @DATE@
# Generated file, don't edit
#*=====================================================================*/
#* serrano/prgm/project/bigloo/bigloo/autoconf/runtest.in */
#* ------------------------------------------------------------- */
Expand Down
1 change: 0 additions & 1 deletion bde/afile/afile.scm
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
(fprint po
";; automatically generated, don't edit" #\Newline
";; " (pwd) #\Newline
";; " (date) #\Newline #\Newline
#\()
(for-each (lambda (a)
(display " " po)
Expand Down
1 change: 0 additions & 1 deletion bglpkg/tuning.scm
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@
(begin
(fprint op ";; automatically generated, don't edit")
(fprint op ";; generated by " (bglpkg-name) ", tuned for " tuning)
(fprint op ";; " (current-date))
(newline op)
(fprint op ";; package")
(pp-package *package* op)
Expand Down
7 changes: 2 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3719,7 +3719,7 @@ if [ $action = "all" -o $action = "bigloo_config" ]; then
fi

cat autoconf/`basename $p`.in \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit), `date`|" \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit)|" \
-e "s|@BGL_RELEASE@|BGL_$rel|" \
-e "s|@BGL_RELEASE_NUMBER@|$release|" \
-e "s|@BGL_RELEASE_VERSION@|$version|" \
Expand Down Expand Up @@ -4097,7 +4097,6 @@ if [ $action = "all" -o $action = "bigloo_config_el" ]; then
rm -f $bigloo_config_el 2> /dev/null

$echo ";; Automatically generated file (don't edit) */" > $bigloo_config_el
$echo ";; `date`" >> $bigloo_config_el
$echo "" >> $bigloo_config_el
$echo "(provide 'bmacs-config)" >> $bigloo_config_el
$echo "(defvar bmacs-docdir \"$docdir\")" >> $bigloo_config_el
Expand Down Expand Up @@ -4179,7 +4178,6 @@ if [ $action = "all" -o $action = "Makefile.config" ]; then
# Makefile.buildconfig
rm -f $makefile_build 2> /dev/null
$echo "# automatically generated, don't edit" > $makefile_build
$echo "# `date`" >> $makefile_build
$echo "" >> $makefile_build

# The boot mode (see autoconf/prebuild)
Expand Down Expand Up @@ -4218,7 +4216,6 @@ if [ $action = "all" -o $action = "Makefile.config" ]; then
# We first cleanup the file
rm -f $makefile_cfg 2> /dev/null
$echo "# automatically generated, don't edit" > $makefile_cfg
$echo "# `date`" >> $makefile_cfg
$echo "" >> $makefile_cfg

# The Bigloo release number
Expand Down Expand Up @@ -4703,7 +4700,7 @@ if [ $action = "all" -o $action = "Makefile.config" ]; then

# Produce the bglgst_config.h file
cat api/gstreamer/src/Clib/bglgst_config.h.in \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit), `date`|" \
| sed -e "s|@CONFIGURE@|Automatically generated file (don't edit)|" \
-e "s|@GSTREAMER_VERSION@|$gstreamer|g" \
-e "s|@GSTREAMER_USE_THREADS@|$gstusethread|g" \
-e "s|@GSTREAMER_HAVE_AUDIO@|$gsthaveaudio|g" \
Expand Down
Loading