]> git.eshelyaron.com Git - emacs.git/commitdiff
; update_autogen: Remove -I flag handling completely
authorStefan Kangas <stefan@marxist.se>
Thu, 2 Dec 2021 17:15:41 +0000 (18:15 +0100)
committerStefan Kangas <stefan@marxist.se>
Thu, 2 Dec 2021 17:18:25 +0000 (18:18 +0100)
* admin/update_autogen: Fix my previous commit to now completely
remove any trace of the -I flag.

admin/update_autogen

index ff5a33888618844bbf4463c291dce935f3cb5608..d83760a571318d4707ebd8262f98b313ba0c344f 100755 (executable)
@@ -53,7 +53,7 @@ cd ../
 usage ()
 {
     cat 1>&2 <<EOF
-Usage: ${PN} [-f] [-c] [-q] [-A dir] [-I] [-L] [-C] [-- make-flags]
+Usage: ${PN} [-f] [-c] [-q] [-A dir] [-L] [-C] [-- make-flags]
 Update some auto-generated files in the Emacs tree.
 By default, only does the versioned loaddefs-like files in lisp/.
 This requires a build.  Passes any non-option args to make (eg -- -j2).
@@ -109,7 +109,7 @@ tempfile=/tmp/$PN.$$
 trap "rm -f $tempfile 2> /dev/null" EXIT
 
 
-while getopts ":hcfqA:HCIL" option ; do
+while getopts ":hcfqA:HCL" option ; do
     case $option in
         (h) usage ;;