diff options
author | asami <asami@FreeBSD.org> | 2000-09-27 07:35:36 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-09-27 07:35:36 +0800 |
commit | 55df6f79869e96abce0b1a9e0ddb489e2e229277 (patch) | |
tree | 1a95591e646f9b98f7c05fd49889752d6e0ea3e4 /Tools | |
parent | 37b4b4dc6e8bab409aec6c92346f2d8e0bce9562 (diff) | |
download | freebsd-ports-gnome-55df6f79869e96abce0b1a9e0ddb489e2e229277.tar.gz freebsd-ports-gnome-55df6f79869e96abce0b1a9e0ddb489e2e229277.tar.zst freebsd-ports-gnome-55df6f79869e96abce0b1a9e0ddb489e2e229277.zip |
When NODUMMY is defined, set XFREE86_VERSION to 4 and MOTIF_OPEN to t.
These are for testing the split-up XFree86-4 ports and open-motif.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 7 | ||||
-rwxr-xr-x | Tools/portbuild/scripts/makeindex | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index eedf0db6cf60..0cd72ab77721 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -44,6 +44,13 @@ esac export PORTSDIR=$(pwd) duds=../../${branch}/duds +if [ "x$NODUMMY" = "x" ]; then + unset XFREE86_VERSION + unset MOTIF_OPEN +else + export XFREE86_VERSION=4 + export MOTIF_OPEN=t +fi unset DISPLAY export BATCH=t export HAVE_MOTIF=t diff --git a/Tools/portbuild/scripts/makeindex b/Tools/portbuild/scripts/makeindex index f5ca0b0e43df..8534e29be8bc 100755 --- a/Tools/portbuild/scripts/makeindex +++ b/Tools/portbuild/scripts/makeindex @@ -43,6 +43,14 @@ esac export PORTSDIR=$(pwd) +if [ "x$NODUMMY" = "x" ]; then + unset XFREE86_VERSION + unset MOTIF_OPEN +else + export XFREE86_VERSION=4 + export MOTIF_OPEN=t +fi + unset DISPLAY export BATCH=t export HAVE_MOTIF=t |