diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2003-12-04 17:34:21 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2003-12-04 17:34:21 +0000 |
commit | ea7d06de9102477b334d82b5b9617fdbefe1ec89 (patch) | |
tree | 010f6253bb4c0f6be3bcb32f6489cdb9b501d351 /databases/firebird-devel/files/boot.freebsd | |
parent | Add missing patches for the 1.5.r7 update. (diff) |
- Update to 2.0.a0.
- Previous maintainer is now tha actual maintainer again.
- No package at the moment.
PR: 59001
Submitted by: chris@e-easy.com.au
Notes
Notes:
svn path=/head/; revision=95039
Diffstat (limited to 'databases/firebird-devel/files/boot.freebsd')
-rw-r--r-- | databases/firebird-devel/files/boot.freebsd | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/databases/firebird-devel/files/boot.freebsd b/databases/firebird-devel/files/boot.freebsd deleted file mode 100644 index df80d2884076..000000000000 --- a/databases/firebird-devel/files/boot.freebsd +++ /dev/null @@ -1,32 +0,0 @@ -#! /bin/sh -# -# $Id: boot.freebsd,v 1.1 2000/09/29 16:24:25 tom Exp tom $ -# -# Contributor(s): -# -# Tom Coleman TMC Systems <tcoleman@autowares.com> -# Geoff Speicher <geoff@sea-incorporated.com> -# -CWD=`pwd`;export CWD -INTERBASE=$CWD/interbase -LD_LIBRARY_PATH=$INTERBASE/lib -PATH=$PATH:$INTERBASE/bin:. -echo INTERBASE=$INTERBASE -echo LD_LIBRARY_PATH=$LD_LIBRARY_PATH -export LD_LIBRARY_PATH -if [ -z "$REFDBPATH" ];then - echo "REFDBPATH not defined" - REFDBPATH=`dirname $CWD`/refDatabases; export REFDBPATH -fi -echo "REFDBPATH="$REFDBPATH -if [ "$1" = "SUPER" ]; then - echo "Building SUPER" - make -f make.freebsd super_firebird -else - echo "Building CLASSIC" - if [ "$#" -gt 0 ]; then - make -f make.freebsd $1 - else - make -f make.freebsd - fi -fi |