diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-09-04 19:26:24 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-09-04 19:26:24 +0000 |
commit | 228ab588738952bd42427886fd5368181243ba6e (patch) | |
tree | 7fe589d0d1b0e6d00b7aa9cd05fc46ca15de7655 /devel/dprog/files | |
parent | - Drop .la files, no dependees require them (diff) |
Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user
Differential Revision: https://reviews.freebsd.org/D703
Reviewed by and discussed with: bapt
With hat: portmgr
Diffstat (limited to 'devel/dprog/files')
-rw-r--r-- | devel/dprog/files/patch-Makefile.in | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/devel/dprog/files/patch-Makefile.in b/devel/dprog/files/patch-Makefile.in index 477714d0de1d..b819f9e093d8 100644 --- a/devel/dprog/files/patch-Makefile.in +++ b/devel/dprog/files/patch-Makefile.in @@ -27,19 +27,3 @@ cxx_dprog_test_LDFLAGS = am_dprog_OBJECTS = lexer.$(OBJEXT) parser.$(OBJEXT) ast.$(OBJEXT) \ pretty_printer.$(OBJEXT) range_checking.$(OBJEXT) \ -@@ -315,6 +315,7 @@ - @list='$(lib_LIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ -+ $(RANLIB) $$p; \ - echo " $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f; \ - else :; fi; \ -@@ -324,7 +325,6 @@ - if test -f $$p; then \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \ -- $(RANLIB) $(DESTDIR)$(libdir)/$$p; \ - else :; fi; \ - done - |