diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-05-15 10:55:28 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-05-15 10:55:28 +0000 |
commit | f335b1a0e8fb90fb4944ad8a02620721b12b7fdd (patch) | |
tree | e87330a537f5f2a91a9a5e4ed294004e3d01a615 /net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch | |
parent | Remove old versions. (diff) | |
download | historical-f335b1a0e8fb90fb4944ad8a02620721b12b7fdd.tar.gz historical-f335b1a0e8fb90fb4944ad8a02620721b12b7fdd.tar.bz2 historical-f335b1a0e8fb90fb4944ad8a02620721b12b7fdd.zip |
Revision bump: Add epatch_user, add patch to prevent sandbox violations, use default 'emake install' instead of einstall, add compatibility with Automake 1.13, wrt bug #469476
Package-Manager: portage-2.2.0_alpha174/cvs/Linux x86_64
Manifest-Sign-Key: 0x1F357D42
Diffstat (limited to 'net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch')
-rw-r--r-- | net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch b/net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch new file mode 100644 index 000000000000..de91753f33f5 --- /dev/null +++ b/net-dialup/pptpd/files/pptpd-1.3.4-sandbox-fix.patch @@ -0,0 +1,21 @@ +--- plugins/Makefile.orig 2013-05-15 14:36:33.994231829 +0400 ++++ plugins/Makefile 2013-05-15 14:37:06.686234429 +0400 +@@ -17,14 +17,14 @@ + %.so: %.c + $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ $(LDADD) + +-LIBDIR ?= $(DESTDIR)$(prefix)/lib/pptpd ++LIBDIR ?= $(prefix)/lib/pptpd + + install: $(PLUGINS) +- $(INSTALL) -d $(LIBDIR) +- $(INSTALL) $? $(LIBDIR) ++ $(INSTALL) -d $(DESTDIR)$(LIBDIR) ++ $(INSTALL) $? $(DESTDIR)$(LIBDIR) + + uninstall: +- rm -f $(LIBDIR)$(PLUGINS) ++ rm -f $(DESTDIR)$(LIBDIR)$(PLUGINS) + + clean: + rm -f *.o *.so *.a |