Fossil SCM
In the Makefile, use a more standard syntax for setting a variable to the output of a shell command. Fixes building on Solaris, seems OK on other platforms.
Commit
9ef38b6b6d8ac5daa0e01c93199cc72a4174a879
Parent
eb4b5e3beb9f587…
1 file changed
+1
-1
M
Makefile
+1
-1
| --- Makefile | ||
| +++ Makefile | ||
| @@ -58,11 +58,11 @@ | ||
| 58 | 58 | |
| 59 | 59 | # You should not need to change anything below this line |
| 60 | 60 | ############################################################################### |
| 61 | 61 | # |
| 62 | 62 | # Automatic platform-specific options. |
| 63 | -HOST_OS!= uname -s | |
| 63 | +HOST_OS :sh = uname -s | |
| 64 | 64 | |
| 65 | 65 | LIB.SunOS= -lsocket -lnsl |
| 66 | 66 | LIB += $(LIB.$(HOST_OS)) |
| 67 | 67 | |
| 68 | 68 | TCC.DragonFly += -DUSE_PREAD |
| 69 | 69 |
| --- Makefile | |
| +++ Makefile | |
| @@ -58,11 +58,11 @@ | |
| 58 | |
| 59 | # You should not need to change anything below this line |
| 60 | ############################################################################### |
| 61 | # |
| 62 | # Automatic platform-specific options. |
| 63 | HOST_OS!= uname -s |
| 64 | |
| 65 | LIB.SunOS= -lsocket -lnsl |
| 66 | LIB += $(LIB.$(HOST_OS)) |
| 67 | |
| 68 | TCC.DragonFly += -DUSE_PREAD |
| 69 |
| --- Makefile | |
| +++ Makefile | |
| @@ -58,11 +58,11 @@ | |
| 58 | |
| 59 | # You should not need to change anything below this line |
| 60 | ############################################################################### |
| 61 | # |
| 62 | # Automatic platform-specific options. |
| 63 | HOST_OS :sh = uname -s |
| 64 | |
| 65 | LIB.SunOS= -lsocket -lnsl |
| 66 | LIB += $(LIB.$(HOST_OS)) |
| 67 | |
| 68 | TCC.DragonFly += -DUSE_PREAD |
| 69 |