aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2021-12-02 18:15:41 +0100
committerStefan Kangas2021-12-02 18:18:25 +0100
commitcf49f6ef656dcb681b904149b2dd95de71ff2668 (patch)
tree3af4e4234102db1532f28f7f8fb7f00a13b2fdd0
parent48d1e6e9d9217918b68daac9b23140bf8e36c2bf (diff)
downloademacs-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-xadmin/update_autogen4
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 ../
53usage () 53usage ()
54{ 54{
55 cat 1>&2 <<EOF 55 cat 1>&2 <<EOF
56Usage: ${PN} [-f] [-c] [-q] [-A dir] [-I] [-L] [-C] [-- make-flags] 56Usage: ${PN} [-f] [-c] [-q] [-A dir] [-L] [-C] [-- make-flags]
57Update some auto-generated files in the Emacs tree. 57Update some auto-generated files in the Emacs tree.
58By default, only does the versioned loaddefs-like files in lisp/. 58By default, only does the versioned loaddefs-like files in lisp/.
59This requires a build. Passes any non-option args to make (eg -- -j2). 59This requires a build. Passes any non-option args to make (eg -- -j2).
@@ -109,7 +109,7 @@ tempfile=/tmp/$PN.$$
109trap "rm -f $tempfile 2> /dev/null" EXIT 109trap "rm -f $tempfile 2> /dev/null" EXIT
110 110
111 111
112while getopts ":hcfqA:HCIL" option ; do 112while getopts ":hcfqA:HCL" option ; do
113 case $option in 113 case $option in
114 (h) usage ;; 114 (h) usage ;;
115 115