diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-09-11 01:04:52 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-09-11 01:04:52 +0000 |
commit | bbd6a62a28b2cfb46e412091903f05d22b53e56c (patch) | |
tree | 151fed73fada0e22e4f45e6a8572019e9923ef56 /devel/libtool/files/patch-af | |
parent | e972b29b435e82c5c0a027ce8d889a1558a8370f (diff) | |
download | ports-bbd6a62a28b2cfb46e412091903f05d22b53e56c.tar.gz ports-bbd6a62a28b2cfb46e412091903f05d22b53e56c.zip |
Notes
Diffstat (limited to 'devel/libtool/files/patch-af')
-rw-r--r-- | devel/libtool/files/patch-af | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/libtool/files/patch-af b/devel/libtool/files/patch-af new file mode 100644 index 000000000000..a62485d06dc4 --- /dev/null +++ b/devel/libtool/files/patch-af @@ -0,0 +1,24 @@ +--- libltdl/Makefile.in.orig Fri Jul 2 09:02:06 1999 ++++ libltdl/Makefile.in Thu Sep 9 22:40:10 1999 +@@ -328,17 +328,16 @@ + distdir: $(DISTFILES) + -rm -rf $(distdir) + mkdir $(distdir) +- -chmod 777 $(distdir) ++ -chmod 555 $(distdir) + @for file in $(DISTFILES); do \ + d=$(srcdir); \ + if test -d $$d/$$file; then \ +- cp -pr $$/$$file $(distdir)/$$file; \ ++ echo no copy dir $$d/$$file; \ + else \ +- test -f $(distdir)/$$file \ +- || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ +- || cp -p $$d/$$file $(distdir)/$$file || :; \ ++ install -c -o root -g wheel -m 444 $$d/$$file $(distdir)/$$file; \ + fi; \ + done ++ -chmod a+x $(distdir)/configure + info-am: + info: info-am + dvi-am: |