Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 100)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#133 invalid VAC308 resets LIB entry Yuri Dario
Description

The VAC308 template is resetting the LIB variable, thus the linker is unable to find default libraries. Suggested patch:

--- VAC308.kmk;2	2015-12-17 16:40:00.000000000 +0100
+++ VAC308.kmk	2017-01-05 15:45:58.000000000 +0100
@@ -66,7 +66,7 @@
  TOOL_VAC308_ENV_SETUP ?= $(REDIRECT) \
 	-E 'BEGINLIBPATH=$(PATH_TOOL_VAC308_DLL);$(BEGINLIBPATH)' \
 	-E 'DPATH=$(PATH_TOOL_VAC308_LOCALE);$(PATH_TOOL_VAC308_HELP);$(DPATH)' \
-	-E 'LIB=' \
+	-E 'LIB=$(PATH_TOOL_VAC308_LIB)' \
 	-E 'INCLUDE=' \
 	--
  TOOL_VAC308_CC  ?= $(PATH_TOOL_VAC308_BIN)/icc$(HOSTSUFF_EXE)

#128 fixed Please recognize ppc64le architectures Sérgio Monteiro Basto
Description

Here is the latest patch: http://pkgs.fedoraproject.org/cgit/kBuild.git/tree/kBuild-0.1.9998-ppc64le.patch

#127 fixed kmh_redirect: Corrupted environment after unsetting environment variable dmik
Description

On OS/2, unsetting an existing environment variable with -E 'VAR=' will kill e.g. the PATH setting. The following test shows this (assumes LANG is set):

kmk_redirect.exe -E 'LANG' -- cmd /c 'echo PATH=%PATH% & echo LANG=%LANG%'

This is a regression of r2699. The problem is that the EMX implementation of putenv forbids free-ing (or somehow reusing) strings passed to it.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.