diff options
| author | Stefan Kangas | 2021-12-02 18:15:41 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2021-12-02 18:18:25 +0100 |
| commit | cf49f6ef656dcb681b904149b2dd95de71ff2668 (patch) | |
| tree | 3af4e4234102db1532f28f7f8fb7f00a13b2fdd0 | |
| parent | 48d1e6e9d9217918b68daac9b23140bf8e36c2bf (diff) | |
| download | emacs-cf49f6ef656dcb681b904149b2dd95de71ff2668.tar.gz emacs-cf49f6ef656dcb681b904149b2dd95de71ff2668.zip | |
; update_autogen: Remove -I flag handling completely
* admin/update_autogen: Fix my previous commit to now completely
remove any trace of the -I flag.
| -rwxr-xr-x | admin/update_autogen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/update_autogen b/admin/update_autogen index ff5a3388861..d83760a5713 100755 --- a/admin/update_autogen +++ b/admin/update_autogen | |||
| @@ -53,7 +53,7 @@ cd ../ | |||
| 53 | usage () | 53 | usage () |
| 54 | { | 54 | { |
| 55 | cat 1>&2 <<EOF | 55 | cat 1>&2 <<EOF |
| 56 | Usage: ${PN} [-f] [-c] [-q] [-A dir] [-I] [-L] [-C] [-- make-flags] | 56 | Usage: ${PN} [-f] [-c] [-q] [-A dir] [-L] [-C] [-- make-flags] |
| 57 | Update some auto-generated files in the Emacs tree. | 57 | Update some auto-generated files in the Emacs tree. |
| 58 | By default, only does the versioned loaddefs-like files in lisp/. | 58 | By default, only does the versioned loaddefs-like files in lisp/. |
| 59 | This requires a build. Passes any non-option args to make (eg -- -j2). | 59 | This requires a build. Passes any non-option args to make (eg -- -j2). |
| @@ -109,7 +109,7 @@ tempfile=/tmp/$PN.$$ | |||
| 109 | trap "rm -f $tempfile 2> /dev/null" EXIT | 109 | trap "rm -f $tempfile 2> /dev/null" EXIT |
| 110 | 110 | ||
| 111 | 111 | ||
| 112 | while getopts ":hcfqA:HCIL" option ; do | 112 | while getopts ":hcfqA:HCL" option ; do |
| 113 | case $option in | 113 | case $option in |
| 114 | (h) usage ;; | 114 | (h) usage ;; |
| 115 | 115 | ||