Skip to content

Commit

Permalink
Replace shebang from #!/usr/bin/sh to #!/bin/sh
Browse files Browse the repository at this point in the history
With distributions that don't have the usr-bin-merge, sh still is under
/bin and not /usr/bin.
  • Loading branch information
fossdd committed Sep 21, 2024
1 parent 06de3c5 commit d69f3db
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config.guess
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# Attempt to guess a canonical system name.
# Copyright 1992-2023 Free Software Foundation, Inc.

Expand Down
2 changes: 1 addition & 1 deletion config.sub
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# Configuration validation subroutine script.
# Copyright 1992-2023 Free Software Foundation, Inc.

Expand Down
2 changes: 1 addition & 1 deletion engine/emoji-picker.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# vim:set et sts=4 sw=4
#
# emoji-picker - An emoji selection tool
Expand Down
2 changes: 1 addition & 1 deletion engine/ibus-engine-typing-booster.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# vim:set et sts=4 sw=4
#
# ibus-typing-booster - A completion input method for IBus
Expand Down
2 changes: 1 addition & 1 deletion setup/ibus-setup-typing-booster.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/sh
# vim:set noet ts=4:
#
#
Expand Down

0 comments on commit d69f3db

Please sign in to comment.