diff options
author | Steve Vinoski <[email protected]> | 2014-11-26 06:52:37 -0500 |
---|---|---|
committer | Steve Vinoski <[email protected]> | 2014-11-26 06:56:19 -0500 |
commit | b0617782416be99aa29281fed4d808d0653b63cb (patch) | |
tree | 762b545814d34c290c2fe9effaad8a83546b1929 /erts | |
parent | e3191ce95cd58db6cc7e207934938fb88d0c9eae (diff) | |
download | otp-b0617782416be99aa29281fed4d808d0653b63cb.tar.gz otp-b0617782416be99aa29281fed4d808d0653b63cb.tar.bz2 otp-b0617782416be99aa29281fed4d808d0653b63cb.zip |
Clean up temporary dtrace file during config
When configuring erts to support dynamic trace via dtrace, be sure to clean
up the temporary file "erts/foo-dtrace.h" used to help check for dtrace
support. Otherwise, it shows up as an untracked file in git.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/configure.in b/erts/configure.in index 877e0d4c1c..1676d3d216 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -3970,6 +3970,7 @@ if test "$enable_dtrace_test" = "yes" ; then DTRACE_ENABLED_2STEP=yes fi], []) + $RM -f foo-dtrace.h AS_IF([test "x$DTRACE_ENABLED_2STEP" = "xyes"], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) |