diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-05-27 15:20:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-05-27 15:20:22 +0000 |
commit | 7de4c928040c76f0f41cad5277f09c04003f2ffc (patch) | |
tree | fc67ae7cb78285b0c4ee099924eb38486e8a0785 /scripts | |
parent | 388404764d7fc532bc203779c0fd1a24201240b8 (diff) | |
download | upstream-7de4c928040c76f0f41cad5277f09c04003f2ffc.tar.gz upstream-7de4c928040c76f0f41cad5277f09c04003f2ffc.tar.bz2 upstream-7de4c928040c76f0f41cad5277f09c04003f2ffc.zip |
scripts/feeds: fix typo in copied code
do_install_target copied code from do_install_package, but didn't
replace all text.
Signed-off-by: Karl Palsson <karlp@remake.is>
SVN-Revision: 45784
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds b/scripts/feeds index a6be9cca22..b6d2f45e72 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -390,7 +390,7 @@ sub do_install_target($) { system("ln -sf ../../$path ./target/linux/"); } else { - warn "Package is not valid\n"; + warn "Target is not valid\n"; return 1; } |