1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

test uses = for equality, not ==.

This commit is contained in:
Satoshi Asami 2000-08-30 05:24:47 +00:00
parent 9f79584da9
commit 36811d3a77
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32121
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
if test "x$LTSHARED" != xno -o "x$LTSTATIC" != xno; then
USELIBTOOL="yes"
- LIBTOOL="./libtool"
+ if test "x$LIBTOOL" == "x"; then
+ if test "x$LIBTOOL" = "x"; then
+ LIBTOOL="./libtool"
+ fi
O="lo"

View File

@ -5,7 +5,7 @@
if test "x$LTSHARED" != xno -o "x$LTSTATIC" != xno; then
USELIBTOOL="yes"
- LIBTOOL="./libtool"
+ if test "x$LIBTOOL" == "x"; then
+ if test "x$LIBTOOL" = "x"; then
+ LIBTOOL="./libtool"
+ fi
O="lo"