Commit 0f08f51e authored by ben's avatar ben

rdiff-backup script not exec'able until installed


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@165 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent d8916a43
...@@ -3,7 +3,8 @@ New in v0.9.4 (2002/07/25) ...@@ -3,7 +3,8 @@ New in v0.9.4 (2002/07/25)
Man page now correctly included in rpm. Man page now correctly included in rpm.
Installation script does not have exec permissions until it is
installed (thanks Jason Piterak).
New in v0.9.3 (2002/07/15) New in v0.9.3 (2002/07/15)
......
...@@ -4,6 +4,10 @@ Thank you for trying rdiff-backup. To install, run: ...@@ -4,6 +4,10 @@ Thank you for trying rdiff-backup. To install, run:
python setup.py install python setup.py install
The build process can be also be run separately:
python setup.py build
The default prefix is /usr, so files are put in /usr/bin, The default prefix is /usr, so files are put in /usr/bin,
/usr/share/man/, etc. An alternate prefix can be specified using the /usr/share/man/, etc. An alternate prefix can be specified using the
--prefix=<prefix> option. For example: --prefix=<prefix> option. For example:
...@@ -14,8 +18,10 @@ The default prefix is /usr, so files are put in /usr/bin, ...@@ -14,8 +18,10 @@ The default prefix is /usr, so files are put in /usr/bin,
REQUIREMENTS: REQUIREMENTS:
Remember that you must have Python 2.2 or later and librsync 0.9.5.1 Remember that you must have Python 2.2 or later and librsync 0.9.5.1
or later installed. To download, see http://www.python.org and or later installed. For Python, see http://www.python.org. The
http://sourceforge.net/projects/librsync/ respectively. rdiff-backup homepage at http://rdiff-backup.stanford.edu/ should have
a recent version of librsync; otherwise see the librsync homepage at
http://sourceforge.net/projects/librsync/.
For remote operation, rdiff-backup should be in installed and in the For remote operation, rdiff-backup should be in installed and in the
PATH on remote system(s) (see man page for more information). PATH on remote system(s) (see man page for more information).
......
...@@ -5,9 +5,6 @@ If not resuming, don't crash on badly written checkpoint_data. ...@@ -5,9 +5,6 @@ If not resuming, don't crash on badly written checkpoint_data.
If don't recover hardlink support and hardlink support on, don't If don't recover hardlink support and hardlink support on, don't
resume. resume.
Make rdiff-backup not runnable from starting directory to avoid
confusion. (Jason Piterak)
Fix crash that can occur when exception is found in the middle of a Fix crash that can occur when exception is found in the middle of a
file (duplicate by backing up /proc remotely). (John Goerzen) file (duplicate by backing up /proc remotely). (John Goerzen)
......
...@@ -107,7 +107,7 @@ def MakeTar(): ...@@ -107,7 +107,7 @@ def MakeTar():
VersionedCopy(DistDir + "/setup.py", "%s/setup.py" % (tardir,)) VersionedCopy(DistDir + "/setup.py", "%s/setup.py" % (tardir,))
os.chmod(os.path.join(tardir, "setup.py"), 0755) os.chmod(os.path.join(tardir, "setup.py"), 0755)
os.chmod(os.path.join(tardir, "rdiff-backup"), 0755) os.chmod(os.path.join(tardir, "rdiff-backup"), 0644)
CopyMan(os.path.join(tardir, "rdiff-backup.1"), Version) CopyMan(os.path.join(tardir, "rdiff-backup.1"), Version)
os.system("tar -cvzf %s %s" % (tarfile, tardir)) os.system("tar -cvzf %s %s" % (tarfile, tardir))
shutil.rmtree(tardir) shutil.rmtree(tardir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment