#! /bin/sh /usr/share/dpatch/dpatch-run ## 05_fix_displayed_full_paths.dpatch by Søren Boll Overgaard ## ## DP: Adapt the path name of binaries in an error message to the paths as ## DP: used in the Debian package. @DPATCH@ diff a/include/mlmmj.h b/include/mlmmj.h --- a/include/mlmmj.h +++ b/include/mlmmj.h @@ -70,7 +70,7 @@ #define CHECKFULLPATH(name) if(strchr(name, '/') == NULL) { \ fprintf(stderr, "All mlmmj binaries have to " \ "be invoked with full path,\n" \ - "e.g. /usr/local/bin/%s\n", name); \ + "e.g. /usr/bin/%s\n", name); \ exit(EXIT_FAILURE); \ };