From 83ccc6211e5efb3e0d6cddf083250b266bb97cd2 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Sat, 12 Nov 2011 21:18:44 +0000 Subject: [PATCH] Fixed Data subdirectory with wrong path for make dist --- examples/Makefile.am | 5 +++++ examples/vSLAMexample/Makefile.am | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index ee8f0db18..14b6fb935 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -21,6 +21,11 @@ noinst_PROGRAMS += Pose2SLAMwSPCG_advanced # Solves a simple Pose2 SLAM examp noinst_PROGRAMS += elaboratePoint2KalmanFilter # simple linear Kalman filter on a moving 2D point, but done using factor graphs noinst_PROGRAMS += easyPoint2KalmanFilter # uses the cool generic templated Kalman filter class to do the same noinst_PROGRAMS += CameraResectioning + +EXTRA_DIST = Data +dist-hook: + rm -rf $(distdir)/Data/.svn + SUBDIRS = vSLAMexample # visual SLAM examples with 3D point landmarks and 6D camera poses #---------------------------------------------------------------------------------------------------- # rules to build local programs diff --git a/examples/vSLAMexample/Makefile.am b/examples/vSLAMexample/Makefile.am index f4056bd99..6a8616cc9 100644 --- a/examples/vSLAMexample/Makefile.am +++ b/examples/vSLAMexample/Makefile.am @@ -21,10 +21,6 @@ headers += Feature2D.h vSLAMutils.h noinst_HEADERS = $(headers) -EXTRA_DIST = Data -dist-hook: - rm -rf $(distdir)/Data/.svn - #---------------------------------------------------------------------------------------------------- # rules to build local programs #----------------------------------------------------------------------------------------------------