Skip to content

Commit f3e25d8

Browse files
committed
fix for the tests the DPS_TOOLKIT_HOME setting in Makefiles
1 parent a966c3d commit f3e25d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/DPSUsageFromCpp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# present in the DPS toolkit's impl directory, it is necessary to
3232
# export the following. This will get used inside the C++ operator's
3333
# impl/bin/archLevel file.
34-
export DPS_TOOLKIT_HOME=$(HOME)/streamsx.dps/com.ibm.streamsx.dps
34+
export DPS_TOOLKIT_HOME?=$(HOME)/streamsx.dps/com.ibm.streamsx.dps
3535

3636
SPLC_FLAGS ?= -a -t $(DPS_TOOLKIT_HOME)
3737
SPLC = $(STREAMS_INSTALL)/bin/sc

samples/advanced/04_all_dps_apis_at_work_in_spl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Since the DPS toolkit version you are using could be more
2626
# recent than the one in the IBM Streams installation directory,
2727
# you may want to ensure that the following DPS toolkit path is correct.
28-
DPS_TOOLKIT_HOME = $(HOME)/streamsx.dps/com.ibm.streamsx.dps
28+
DPS_TOOLKIT_HOME ?= $(HOME)/streamsx.dps/com.ibm.streamsx.dps
2929

3030
# If the user wants to use a different version of
3131
# the DPS toolkit than the one shipped in the

0 commit comments

Comments
 (0)