瀏覽代碼

package/irda-utils: fix typos in patch descriptions

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Peter Korsgaard 10 月之前
父節點
當前提交
1961a86751
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      package/irda-utils/0001-daemon.patch
  2. 1 1
      package/irda-utils/0002-nommu.patch

+ 1 - 1
package/irda-utils/0001-daemon.patch

@@ -2,7 +2,7 @@ written by Mike Frysinger
 
 https://sourceforge.net/tracker/?func=detail&aid=3132053&group_id=5616&atid=305616
 
-Rather than using the fork function (which doesnt work on nommu
+Rather than using the fork function (which doesn't work on nommu
 systems), simply use the daemon() function instead (which does
 work). this should work the same before and after for all systems.
 

+ 1 - 1
package/irda-utils/0002-nommu.patch

@@ -3,7 +3,7 @@ written by Mike Frysinger
 https://sourceforge.net/tracker/?func=detail&aid=3132056&group_id=5616&atid=305616
 
 nommu systems cannot fork() as the hardware cannot support
-it. irattach uses it as a minor optimization, but it isnt
+it. irattach uses it as a minor optimization, but it isn't
 necessary for correct functioning of the utility. so add a
 NO_FORK define so we nommu peeps can do CFLAGS="... -DNO_FORK=1
 ..." and use it in our embedded systems.