install-info.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 <errno.h>
  21. #include <string.h>
  22. #include <unistd.h>
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #define SELF "/usr/sbin/install-info"
  26. #define WRAPPED "/usr/bin/install-info"
  27. #if HAVE_C99
  28. #define warn(...) fprintf(stderr, "install-info: warning: " __VA_ARGS__)
  29. #define error(...) fprintf(stderr, "install-info: error: " __VA_ARGS__)
  30. #else
  31. #define warn(msg...) fprintf(stderr, "install-info: warning: " msg)
  32. #define error(msg...) fprintf(stderr, "install-info: error: " msg)
  33. #endif
  34. int
  35. main(int argc, char **argv)
  36. {
  37. if (strcmp(argv[0], SELF) == 0) {
  38. warn("don't call programs like install-info with an absolute path,\n");
  39. warn("%s provided by dpkg is deprecated and will go away soon;\n",
  40. SELF);
  41. warn("its replacement lives in /usr/bin/.\n");
  42. }
  43. if (access(WRAPPED, X_OK) == 0) {
  44. execv(WRAPPED, argv);
  45. error("can't execute %s: %s\n", WRAPPED, strerror(errno));
  46. return 1; /* exec failed */
  47. } else {
  48. if (errno == ENOENT) {
  49. if (getenv("DPKG_RUNNING_VERSION") != NULL) {
  50. const char *pkg;
  51. pkg = getenv("DPKG_MAINTSCRIPT_PACKAGE");
  52. warn("maintainer scripts should not call install-info anymore,\n");
  53. warn("this is handled now by a dpkg trigger provided by the\n");
  54. warn("install-info package; package %s should be updated.\n",
  55. pkg);
  56. } else {
  57. warn("nothing done since %s doesn't exist,\n", WRAPPED);
  58. warn("you might want to install an info-browser package.\n");
  59. }
  60. } else {
  61. error("can't execute %s: %s\n", WRAPPED, strerror(errno));
  62. return 1;
  63. }
  64. }
  65. return 0;
  66. }