~ubuntu-branches/ubuntu/trusty/rcs/trusty

« back to all changes in this revision

Viewing changes to src/conf.sh

  • Committer: Bazaar Package Importer
  • Author(s): Romain Francoise
  • Date: 2008-03-23 12:48:22 UTC
  • mfrom: (4.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080323124822-gfnnupnyappiwm0k
Tags: 5.7-23
* The "fourteen degrees below" release.

* Repackage with debhelper and a patch system.
* debian/control: Build-depend on debhelper (>= 6).
* debian/rules: Rewrite using debhelper.
* debian/{compat,rcs.docs}: New files.
* debian/patches/: New directory, contains patches split off the previous
  monolithic Debian diff.

* Include patch by Justin Pryzby <justinpryzby@users.sourceforge.net>
  fixing minor formatting errors in merge.1 (closes: #471243).

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        ech='echo -n' dots='... '
74
74
esac
75
75
 
 
76
$ech >&3 "$0: testing permissions $dots"
 
77
rm -f a.d &&
 
78
date >a.d &&
 
79
chmod 0 a.d &&
 
80
{ test -w a.d || cp /dev/null a.d 2>/dev/null; } && {
 
81
        echo >&3 "$n$0: This command should not be run with superuser permissions."
 
82
        exit 1
 
83
}
 
84
echo >&3 OK
 
85
rm -f a.d || exit
 
86
 
76
87
$ech >&3 "$0: testing compiler for plausibility $dots"
77
88
echo 'main() { return 0; }' >a.c
78
89
rm -f a.exe a.out || exit