aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-09-17 18:02:25 +0000
committerJörg Mayer <jmayer@loplof.de>2013-09-17 18:02:25 +0000
commitfb834104e517869dfb9953e3379da608cd75c928 (patch)
tree7a80d84761b641eb860e2f32878bdcf5edc6301a /cmake
parentb7bb743641baeced2c9ff3605144c39df2b758a7 (diff)
When building packet-dap.c on an empty build tree, packet-dap.c would
be incorrect on the first pass and only be correct when remade. The reason was that disp-exp.cnf was created incorrectly on first pass. disp-exp.cnf required dop-exp.cnf to build correctly, so add a mechanism to add dependencies for export files. Note: Only the cmake change has been tested, the autofoo stuff requires testing. svn path=/trunk/; revision=52120
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/UseAsn2Wrs.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/modules/UseAsn2Wrs.cmake b/cmake/modules/UseAsn2Wrs.cmake
index 51eeb4dfaa..8fe90e25a3 100644
--- a/cmake/modules/UseAsn2Wrs.cmake
+++ b/cmake/modules/UseAsn2Wrs.cmake
@@ -42,6 +42,7 @@ MACRO(ASN2WRS)
DEPENDS
${CMAKE_SOURCE_DIR}/tools/asn2wrs.py
${SRC_FILES}
+ ${EXPORT_DEPENDS}
)
endforeach()
ENDMACRO()