diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-09-26 23:35:36 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-09-26 23:35:36 +0000 |
commit | 411ba40b8e4a6810ed90b05865d72fa11d1bb287 (patch) | |
tree | e8f542f973b0ca0a07fa41c5febc8d0957bce0a1 /Tools/portbuild | |
parent | cf84480637a57ff45357b59bef60bcd267dcd518 (diff) | |
download | ports-411ba40b8e4a6810ed90b05865d72fa11d1bb287.tar.gz ports-411ba40b8e4a6810ed90b05865d72fa11d1bb287.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.
Notes
Notes:
svn path=/head/; revision=33158
Diffstat (limited to 'Tools/portbuild')
-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 |