Ver código fonte

base-files: remove a stale reference to /usr/lib/common.awk (thx, swalker)

SVN-Revision: 25528
Felix Fietkau 14 anos atrás
pai
commit
9f7f8110e7
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      package/base-files/files/bin/ipcalc.sh

+ 1 - 1
package/base-files/files/bin/ipcalc.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 
-awk -f /usr/lib/common.awk -f - $* <<EOF
+awk -f - $* <<EOF
 function bitcount(c) {
 	c=and(rshift(c, 1),0x55555555)+and(c,0x55555555)
 	c=and(rshift(c, 2),0x33333333)+and(c,0x33333333)