1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Author: Ole Streicher <debian@liska.ath.cx>
Description: Use the system provided sextractor binary
instead of the convenience copy
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,7 +24,7 @@
DISTCLEANFILES = *~
-SUBDIRS = irplib sextractor mosca fors recipes reflex regtests
+SUBDIRS = irplib mosca fors recipes reflex regtests
HTML_SUBDIRS =
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -141,7 +141,7 @@
# Define the preprocessor symbols for the sextractor executable
# and the configuration files.
- eval sext_bindir="${prefix}/bin"
+ eval sext_bindir="/usr/bin"
AC_DEFINE_UNQUOTED(FORS_SEXTRACTOR_PATH, "$sext_bindir",
[Absolute path to the sextractor executable])
--- a/configure.ac
+++ b/configure.ac
@@ -92,9 +92,6 @@
FORS_SET_SEX_PREFIX
-AC_CONFIG_SUBDIRS([sextractor])
-
-
AC_CONFIG_FILES(Makefile
doxygen/Doxyfile
mosca/Makefile
|