diff options
| author | Glenn Morris | 2013-11-30 09:54:40 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-11-30 09:54:40 -0800 |
| commit | d715c01933abd5de65ca7668b69deefd9ab3ba66 (patch) | |
| tree | 3b704e07b22b9e6e60a2fcb12cdd9829250b8afc | |
| parent | 90caab3fe722c43bfcf299d82c7aca3b60c24633 (diff) | |
| download | emacs-d715c01933abd5de65ca7668b69deefd9ab3ba66.tar.gz emacs-d715c01933abd5de65ca7668b69deefd9ab3ba66.zip | |
* admin/grammars/Makefile.in: Ensure output files are writable.
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rw-r--r-- | admin/grammars/Makefile.in | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index f65596a1015..059376d622a 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-11-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * grammars/Makefile.in: Ensure output files are writable. | ||
| 4 | |||
| 1 | 2013-11-30 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-11-30 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * charsets/mule-charsets.el: Rewritten to work in Emacs 23 and | 7 | * charsets/mule-charsets.el: Rewritten to work in Emacs 23 and |
diff --git a/admin/grammars/Makefile.in b/admin/grammars/Makefile.in index 94c2e9a6ee2..e279dad3e57 100644 --- a/admin/grammars/Makefile.in +++ b/admin/grammars/Makefile.in | |||
| @@ -65,28 +65,36 @@ wisent: ${WISENT} | |||
| 65 | 65 | ||
| 66 | 66 | ||
| 67 | ${bovinedir}/c-by.el: ${srcdir}/c.by | 67 | ${bovinedir}/c-by.el: ${srcdir}/c.by |
| 68 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 68 | ${make_bovine} -o "$@" ${srcdir}/c.by | 69 | ${make_bovine} -o "$@" ${srcdir}/c.by |
| 69 | 70 | ||
| 70 | ${bovinedir}/make-by.el: ${srcdir}/make.by | 71 | ${bovinedir}/make-by.el: ${srcdir}/make.by |
| 72 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 71 | ${make_bovine} -o "$@" ${srcdir}/make.by | 73 | ${make_bovine} -o "$@" ${srcdir}/make.by |
| 72 | 74 | ||
| 73 | ${bovinedir}/scm-by.el: ${srcdir}/scheme.by | 75 | ${bovinedir}/scm-by.el: ${srcdir}/scheme.by |
| 76 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 74 | ${make_bovine} -o "$@" ${srcdir}/scheme.by | 77 | ${make_bovine} -o "$@" ${srcdir}/scheme.by |
| 75 | 78 | ||
| 76 | 79 | ||
| 77 | ${cedetdir}/semantic/grammar-wy.el: ${srcdir}/grammar.wy | 80 | ${cedetdir}/semantic/grammar-wy.el: ${srcdir}/grammar.wy |
| 81 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 78 | ${make_wisent} -o "$@" ${srcdir}/grammar.wy | 82 | ${make_wisent} -o "$@" ${srcdir}/grammar.wy |
| 79 | 83 | ||
| 80 | ${wisentdir}/javat-wy.el: ${srcdir}/java-tags.wy | 84 | ${wisentdir}/javat-wy.el: ${srcdir}/java-tags.wy |
| 85 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 81 | ${make_wisent} -o "$@" ${srcdir}/java-tags.wy | 86 | ${make_wisent} -o "$@" ${srcdir}/java-tags.wy |
| 82 | 87 | ||
| 83 | ${wisentdir}/js-wy.el: ${srcdir}/js.wy | 88 | ${wisentdir}/js-wy.el: ${srcdir}/js.wy |
| 89 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 84 | ${make_wisent} -o "$@" ${srcdir}/js.wy | 90 | ${make_wisent} -o "$@" ${srcdir}/js.wy |
| 85 | 91 | ||
| 86 | ${wisentdir}/python-wy.el: ${srcdir}/python.wy | 92 | ${wisentdir}/python-wy.el: ${srcdir}/python.wy |
| 93 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 87 | ${make_wisent} -o "$@" ${srcdir}/python.wy | 94 | ${make_wisent} -o "$@" ${srcdir}/python.wy |
| 88 | 95 | ||
| 89 | ${cedetdir}/srecode/srt-wy.el: ${srcdir}/srecode-template.wy | 96 | ${cedetdir}/srecode/srt-wy.el: ${srcdir}/srecode-template.wy |
| 97 | [ ! -f "$@" ] || chmod +w "$@" | ||
| 90 | ${make_wisent} -o "$@" ${srcdir}/srecode-template.wy | 98 | ${make_wisent} -o "$@" ${srcdir}/srecode-template.wy |
| 91 | 99 | ||
| 92 | 100 | ||