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:
parent
9f79584da9
commit
36811d3a77
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32121
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user