~ubuntu-branches/ubuntu/saucy/octave-miscellaneous/saucy-proposed

« back to all changes in this revision

Viewing changes to src/autogen.sh

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Sébastien Villemot, Rafael Laboissiere
  • Date: 2012-04-02 13:20:23 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120402132023-t41xaso7sl5cex90
Tags: 1.1.0-1
[ Sébastien Villemot ]
* Imported Upstream version 1.1.0
* debian/patches/match-cell-array.patch: remove patch (applied upstream)
* debian/patches/waitbar-rename.patch: remove patch (applied upstream)
* debian/patches/no-flexml.patch: remove obsolete patch, flex no longer used
  (Closes: #666294)
* debian/copyright: reflect upstream changes
* debian/octave-miscellaneous.docs: remove, no more docs in the package
* debian/clean: remove obsolete file
* debian/rules: remove hack for wrong permissions in upstream tarball

[ Rafael Laboissiere ]
* debian/watch: Use the SourceForge redirector

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
 
3
 
## Generate ./configure
4
 
rm -f configure.in
5
 
echo "dnl --- DO NOT EDIT --- Automatically generated by autogen.sh" > configure.in
6
 
cat configure.base >> configure.in
7
 
cat <<EOF >> configure.in
8
 
  AC_OUTPUT(\$CONFIGURE_OUTPUTS)
9
 
  dnl XXX FIXME XXX chmod is not in autoconf's list of portable functions
10
 
 
11
 
  echo " "
12
 
  echo "  \"\\\$prefix\" is \$prefix"
13
 
  echo "  \"\\\$exec_prefix\" is \$exec_prefix"
14
 
  AC_MSG_RESULT([\$STATUS_MSG
15
 
 
16
 
find . -name NOINSTALL -print    # shows which toolboxes won't be installed
17
 
])
18
 
EOF
19
 
 
20
 
autoconf configure.in > configure.tmp
21
 
if [ diff configure.tmp configure > /dev/null 2>&1 ]; then
22
 
  rm -f configure.tmp;
23
 
else
24
 
  mv -f configure.tmp configure
25
 
  chmod 0755 configure
26
 
fi
27
 
rm -f configure.in