~ubuntu-branches/ubuntu/wily/octave-miscellaneous/wily

« back to all changes in this revision

Viewing changes to src/autogen.sh

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Rafael Laboissiere, Sébastien Villemot
  • Date: 2012-10-17 13:40:55 UTC
  • mfrom: (1.2.1) (12 sid)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: package-import@ubuntu.com-20121017134055-vatltexghy77fnv7
Tags: 1.2.0-1
[ Rafael Laboissiere ]
* Imported Upstream version 1.2.0
* Bump Standards-Version to 3.9.4 (no changes needed)
* Refresh for new upstream release
* Use Sébastien Villemot's @debian.org email address
* Remove obsolete DM-Upload-Allowed flag
* Add patch autoload-yes.patch
* Add copyright info for file lauchli.m (included in a Debian patch)
* Add patch partcnt-test-succeeds.patch
* Build-depends on octave-pkg-dev >= 1.0.3

[ Sébastien Villemot ]
* debian/control: fix versioned dependency on debhelper
* Add lintian override for false positive on hardening (fortify)

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