[sleuthkit-developers] [ sleuthkit-Feature Requests-3184455 ] builddir != srcdir support
Brought to you by:
carrier
From: SourceForge.net <no...@so...> - 2011-02-17 04:23:37
|
Feature Requests item #3184455, was opened at 2011-02-16 23:21 Message generated for change (Comment added) 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: Closed 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) ---------------------------------------------------------------------- >Comment By: Brian Carrier (carrier) Date: 2011-02-16 23:23 Message: Sending branches/sleuthkit-3.2/NEWS.txt Sending branches/sleuthkit-3.2/samples/Makefile.am Sending branches/sleuthkit-3.2/tests/Makefile.am Sending branches/sleuthkit-3.2/tools/autotools/Makefile.am Sending branches/sleuthkit-3.2/tools/fstools/Makefile.am Sending branches/sleuthkit-3.2/tools/hashtools/Makefile.am Sending branches/sleuthkit-3.2/tools/imgtools/Makefile.am Sending branches/sleuthkit-3.2/tools/sorter/Makefile.am Sending branches/sleuthkit-3.2/tools/srchtools/Makefile.am Sending branches/sleuthkit-3.2/tools/timeline/Makefile.am Sending branches/sleuthkit-3.2/tools/vstools/Makefile.am Sending branches/sleuthkit-3.2/tsk3/auto/Makefile.am Sending branches/sleuthkit-3.2/tsk3/fs/Makefile.am Sending branches/sleuthkit-3.2/tsk3/hashdb/Makefile.am Sending branches/sleuthkit-3.2/tsk3/img/Makefile.am Sending branches/sleuthkit-3.2/tsk3/vs/Makefile.am Sending trunk/NEWS.txt Sending trunk/samples/Makefile.am Sending trunk/tests/Makefile.am Sending trunk/tools/autotools/Makefile.am Sending trunk/tools/fstools/Makefile.am Sending trunk/tools/hashtools/Makefile.am Sending trunk/tools/imgtools/Makefile.am Sending trunk/tools/sorter/Makefile.am Sending trunk/tools/srchtools/Makefile.am Sending trunk/tools/timeline/Makefile.am Sending trunk/tools/vstools/Makefile.am Sending trunk/tsk3/auto/Makefile.am Sending trunk/tsk3/fs/Makefile.am Sending trunk/tsk3/hashdb/Makefile.am Sending trunk/tsk3/img/Makefile.am Sending trunk/tsk3/vs/Makefile.am Transmitting file data ................................ Committed revision 317. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=477892&aid=3184455&group_id=55685 |