diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-13 17:15:01 +0200 |
commit | d2e5a673aa7637c990ca7307e831327eb67e3fe7 (patch) | |
tree | 70e2d421684317208dc94db354551aca749b3328 /package/knock/patches/patch-Makefile_in | |
parent | a8259a651484f6dd5051a20e64f43ae27fc04613 (diff) | |
parent | 6d7a7f4776711758cf5b59028378f01cd8eba493 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/knock/patches/patch-Makefile_in')
-rw-r--r-- | package/knock/patches/patch-Makefile_in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/knock/patches/patch-Makefile_in b/package/knock/patches/patch-Makefile_in new file mode 100644 index 000000000..ec90372ec --- /dev/null +++ b/package/knock/patches/patch-Makefile_in @@ -0,0 +1,24 @@ +--- knock-0.5.orig/Makefile.in 2005-06-27 07:11:34.000000000 +0200 ++++ knock-0.5/Makefile.in 2009-06-13 09:49:14.000000000 +0200 +@@ -68,11 +68,16 @@ dist: distclean + (cd ..; tar czvf knock-$(VERSION).tar.gz knock-$(VERSION)) + + install: all +- $(INSTALL) -D -m0755 knockd $(DESTDIR)$(SBINDIR)/knockd +- $(INSTALL) -D -m0755 knock $(DESTDIR)$(BINDIR)/knock +- $(INSTALL) -D -m0644 $(MANSRC)knockd.1 $(DESTDIR)$(MANDIR)/man1/knockd.1 +- $(INSTALL) -D -m0644 $(MANSRC)knock.1 $(DESTDIR)$(MANDIR)/man1/knock.1 +- $(INSTALL) -D -m0644 knockd.conf $(DESTDIR)/etc/knockd.conf ++ $(INSTALL) -d -m0755 $(DESTDIR)$(SBINDIR) ++ $(INSTALL) -d -m0755 $(DESTDIR)$(BINDIR) ++ $(INSTALL) -d -m0755 $(DESTDIR)$(MANDIR)/man1 ++ $(INSTALL) -d -m0755 $(DESTDIR)/etc ++ $(INSTALL) -m0755 knock $(DESTDIR)$(BINDIR)/knock ++ $(INSTALL) -m0755 knockd $(DESTDIR)$(SBINDIR)/knockd ++ $(INSTALL) -m0755 knock $(DESTDIR)$(BINDIR)/knock ++ $(INSTALL) -m0644 $(MANSRC)knockd.1 $(DESTDIR)$(MANDIR)/man1/knockd.1 ++ $(INSTALL) -m0644 $(MANSRC)knock.1 $(DESTDIR)$(MANDIR)/man1/knock.1 ++ $(INSTALL) -m0644 knockd.conf $(DESTDIR)/etc/knockd.conf + + clean: + rm -f *~ $(OBJDIR)*.o $(MANSRC)*.1 |