]> err.no Git - dpkg/commitdiff
and now it compiles again
authorWichert Akkerman <wakkerma@debian.org>
Sun, 1 Oct 2000 19:37:38 +0000 (19:37 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sun, 1 Oct 2000 19:37:38 +0000 (19:37 +0000)
ChangeLog
include/Makefile.in
include/myopt.h
lib/myopt.c

index f06817df503c4e002b9a3b9a06b6bb3b80953a38..67b75b6f88d3b9ba6e039f216ea93d7940c02f4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,7 @@ Sun Oct  1 20:09:42 CEST 2000 Wichert Akkerman <wakkerma@debian.org>
 
   * main/enquiry.c: fix the listpackage output logic
   * main/filesdb.c: fix error cleanup in ensure_statoverride
-  * lib/myopt.c: add myoptfile() so we can read configuration files
+  * lib/myopt.[ch]: add myoptfile() so we can read configuration files
   * main/main.c: call new myoptfile()
   * include/Makefile.in, include/dpkg.h.in: add dpkgconfdir
 
index 65a3273e2ac792b6af8c2824d6ea2cc6f0dafc3e..56278a735ccaaf6e41ad7c16e401333723f424d4 100644 (file)
@@ -19,6 +19,6 @@ cvslean:: clean
 dpkg.h: dpkg.h.in
        sed -e 's,#CONFIGDIR#,$(dpkgconfdir),' \
                -e 's,#ADMINDIR#,$(admindir),' \
-               -e 's,#LIBDIR#,$(dpkglibdir),; $< > $@
+               -e 's,#LIBDIR#,$(dpkglibdir),' $< > $@
 
 .PHONY: all install clean distclean
index 0b28d09aa0231bd70b0b11856b8f75841ff18a05..34ab472418bee6fcb6b7e0ecb7738151afbfc6e8 100644 (file)
@@ -36,6 +36,7 @@ struct cmdinfo {
   voidfnp farg;
 };
 
+void myfileopt(const char* fn, const struct cmdinfo* cmdinfos);
 void myopt(const char *const **argvp, const struct cmdinfo *cmdinfos);
 
 #endif /* MYOPT_H */
index d625436c618a62780207df6999322cb783075add..c8e0a3c2bd700094fe220f6d1efe93bec436deb0 100644 (file)
@@ -26,7 +26,7 @@
 #include <myopt.h>
 #include <dpkg.h>
 
-void myoptfile(const char* fn, const struct cmdinfo* cmdinfos) {
+void myfileopt(const char* fn, const struct cmdinfo* cmdinfos) {
   FILE* file;
   char linebuf[MAXDIVERTFILENAME];