opkg: fix stray \ warnings with grep-3.8
authorGeorgi Valkov <gvalkov@gmail.com>
Wed, 14 Sep 2022 07:26:03 +0000 (10:26 +0300)
committerNick Hainke <vincent@systemli.org>
Mon, 13 May 2024 22:27:12 +0000 (00:27 +0200)
We simply grep for "src/". So no need for "\/".
Furthermore, since grep-3.8 this creates warnings.

As written in the grep-3.8 announcement:
  Regular expressions with stray backslashes now cause warnings, as
  their unspecified behavior can lead to unexpected results.
  For example, '\a' and 'a' are not always equivalent
  <https://bugs.gnu.org/39678>.

Fixes a warning during the first boot:
  grep: warning: stray \ before /

Signed-off-by: Georgi Valkov <gvalkov@gmail.com>
package/system/opkg/files/20_migrate-feeds

index 38cc57c4677deef572d26f2b6e85fa5d76282a83..a4bd7257580a4ed86e1d41db1c22c0dc48eba164 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-[ -f /etc/opkg.conf ] && grep -q "src\/" /etc/opkg.conf || exit 0
+[ -f /etc/opkg.conf ] && grep -q "src/" /etc/opkg.conf || exit 0
 
 echo -e "# Old feeds from previous image\n# Uncomment to reenable\n" >> /etc/opkg/customfeeds.conf
 sed -n "s/.*\(src\/.*\)/# \1/p" /etc/opkg.conf >> /etc/opkg/customfeeds.conf