diff options
author | Martin Ebourne <martin@ebourne.me.uk> | 2006-03-04 01:33:46 +0000 |
---|---|---|
committer | Martin Ebourne <martin@ebourne.me.uk> | 2006-03-04 01:33:46 +0000 |
commit | defac6623afe8b7d765a9477371fbc47da855c19 (patch) | |
tree | b6d5c9e77d896a67ee1d56bc9ffa9d703ae45c81 /bin/bbackupquery | |
parent | 6f868d48446f4196d2ad69e7ca9be42047ea2d5e (diff) |
This is part 1 of a patch from James O'Gorman.
configure now detects perl executable location and updates all scripts to use the correct path; also adds PERL_EXECUTABLE define to BoxConfig.h. makebuildenv.pl adds PERL define to all makefiles.
Diffstat (limited to 'bin/bbackupquery')
-rw-r--r-- | bin/bbackupquery/Makefile.extra | 2 | ||||
-rwxr-xr-x | bin/bbackupquery/makedocumentation.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/bbackupquery/Makefile.extra b/bin/bbackupquery/Makefile.extra index 633ec0fc..f347c451 100644 --- a/bin/bbackupquery/Makefile.extra +++ b/bin/bbackupquery/Makefile.extra @@ -1,6 +1,6 @@ # AUTOGEN SEEDING autogen_Documentation.cpp: makedocumentation.pl documentation.txt - perl makedocumentation.pl + $(PERL) makedocumentation.pl diff --git a/bin/bbackupquery/makedocumentation.pl b/bin/bbackupquery/makedocumentation.pl index a3632848..72e45a67 100755 --- a/bin/bbackupquery/makedocumentation.pl +++ b/bin/bbackupquery/makedocumentation.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!@PERL@ use strict; print "Creating built-in documentation for bbackupquery...\n"; |