install-info.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * install-info.c - transitional ginstall-info wrapper
  3. *
  4. * Copyright © 2009 Raphaël Hertzog <hertzog@debian.org>
  5. *
  6. * This is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <config.h>
  20. #include <compat.h>
  21. #include <errno.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24. #include <stdlib.h>
  25. #include <stdio.h>
  26. #define SELF "/usr/sbin/install-info"
  27. #define WRAPPED "/usr/bin/install-info"
  28. #if HAVE_C99
  29. #define warn(...) fprintf(stderr, "install-info: warning: " __VA_ARGS__)
  30. #define error(...) fprintf(stderr, "install-info: error: " __VA_ARGS__)
  31. #else
  32. #define warn(msg...) fprintf(stderr, "install-info: warning: " msg)
  33. #define error(msg...) fprintf(stderr, "install-info: error: " msg)
  34. #endif
  35. int
  36. main(int argc, char **argv)
  37. {
  38. if (strcmp(argv[0], SELF) == 0) {
  39. warn("don't call programs like install-info with an absolute path,\n");
  40. warn("%s provided by dpkg is deprecated and will go away soon;\n",
  41. SELF);
  42. warn("its replacement lives in /usr/bin/.\n");
  43. }
  44. execv(WRAPPED, argv);
  45. if (errno == ENOENT) {
  46. if (getenv("DPKG_RUNNING_VERSION") != NULL) {
  47. const char *pkg;
  48. pkg = getenv("DPKG_MAINTSCRIPT_PACKAGE");
  49. warn("maintainer scripts should not call install-info anymore,\n");
  50. warn("this is handled now by a dpkg trigger provided by the\n");
  51. warn("install-info package; package %s should be updated.\n",
  52. pkg);
  53. } else {
  54. warn("nothing done since %s doesn't exist,\n", WRAPPED);
  55. warn("you might want to install an info-browser package.\n");
  56. }
  57. } else {
  58. error("can't execute %s: %s\n", WRAPPED, strerror(errno));
  59. return 1;
  60. }
  61. return 0;
  62. }