aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/testNBAPsystem.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-03-10 07:14:46 +0100
committerBjörn Gustavsson <[email protected]>2010-03-11 10:26:48 +0100
commitdc1e683111376624644a9a60df86cb341f7a554d (patch)
treecc9d3ba7372da7f6bb86ba333c7d5b6bed268e08 /lib/asn1/test/testNBAPsystem.erl
parenta3202b05d648732b7d2afe3ad952782e5376a18d (diff)
downloadotp-dc1e683111376624644a9a60df86cb341f7a554d.tar.gz
otp-dc1e683111376624644a9a60df86cb341f7a554d.tar.bz2
otp-dc1e683111376624644a9a60df86cb341f7a554d.zip
asn1 tests: Don't refer to $ERL_TOP in compiler options
On Windows, $ERL_TOP contains a cygwin-style pathname that can be used in Makefiles to (for instance) include other Makefiles, but must not be passed to non-cygwin programs such as "erlc". Therefore, using compiler options such as "-I $(ERL_TOP)/lib/test_server/include" will not work on Windows. Fix this problem by include "test_server.hrl" using -include_lib() instead of -include(). That works because -include_lib() searches for include files in the code path without the need for any -I options.
Diffstat (limited to 'lib/asn1/test/testNBAPsystem.erl')
-rw-r--r--lib/asn1/test/testNBAPsystem.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/testNBAPsystem.erl b/lib/asn1/test/testNBAPsystem.erl
index 402f16ab5d..66f64162eb 100644
--- a/lib/asn1/test/testNBAPsystem.erl
+++ b/lib/asn1/test/testNBAPsystem.erl
@@ -21,7 +21,7 @@
-export([compile/3,test/2,cell_setup_req_msg/0]).
--include("test_server.hrl").
+-include_lib("test_server/include/test_server.hrl").
-record('InitiatingMessage',{
procedureID, criticality, messageDiscriminator, transactionID, value}).