[sleuthkit-developers] [ sleuthkit-Feature Requests-3184455 ] builddir != srcdir support
Brought to you by:
carrier
From: SourceForge.net <no...@so...> - 2011-02-17 04:21:35
|
Feature Requests item #3184455, was opened at 2011-02-16 23:21 Message generated for change (Tracker Item Submitted) made by carrier You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=477892&aid=3184455&group_id=55685 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Brian Carrier (carrier) Assigned to: Nobody/Anonymous (nobody) Summary: builddir != srcdir support Initial Comment: Hi, sleuthkit 3.2.0 requires to run ./configure in source directory. If /path/sleuthkit-VERSION/configure is run from a separate build directory the make command fails due to missing files. Packaging support tools often use a separate build directory by default. The attached patch fixes this. The include path are all set relative to current $(builddir) and the corresponding $(srcdir): AM_CPPFLAGS=-I../.. -I$(srcdir)/../.. An alternative would be to use: AM_CPPFLAGS=-I$(top_builddir) -I$(top_srcdir) The patch also adds tsk3/tsk_incs.h to the "clean" target. Otherwise "make distcleancheck" and "make distcheck" fail. Thanks, Christian (Christian Franke to sleuthkit-users) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=477892&aid=3184455&group_id=55685 |