aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-02-13 19:06:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-02-13 19:06:20 +0000
commitfba51e7bd4f47e76f22c58854a1ef3db4f135ad0 (patch)
tree14be71c78df09746a4627bbfa324e46a67de98f0 /package
parent776afd6e84689032132b76e8e10fd59133d2e7f9 (diff)
downloadupstream-fba51e7bd4f47e76f22c58854a1ef3db4f135ad0.tar.gz
upstream-fba51e7bd4f47e76f22c58854a1ef3db4f135ad0.tar.bz2
upstream-fba51e7bd4f47e76f22c58854a1ef3db4f135ad0.zip
base-files: remove a stale reference to /usr/lib/common.awk (thx, swalker)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25528 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/bin/ipcalc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/bin/ipcalc.sh b/package/base-files/files/bin/ipcalc.sh
index e4826672e8..9057e85928 100755
--- a/package/base-files/files/bin/ipcalc.sh
+++ b/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)