This website requires JavaScript.
Explore
Help
Sign In
ExternalVendorCode
/
openwrt
Watch
1
Star
0
Fork
0
You've already forked openwrt
mirror of
https://github.com/openwrt/openwrt.git
synced
2024-12-21 06:33:41 +00:00
Code
Issues
Actions
7
Packages
Projects
Releases
Wiki
Activity
4609228432
openwrt
/
tools
/
automake
/
files
/
aclocal
3 lines
75 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add wrapper around aclocal which also search in the targets staging dir aclocal folder for m4 files. SVN-Revision: 12929
2008-10-08 21:50:03 +00:00
#!/usr/bin/env sh
automake: always use correct path for aclocal.real Before this commit, it was assumed that aclocal.real is in the PATH. While this was fine for the normal build workflow, this led to some issues if make TOPDIR="$(pwd)" -C "$pkgdir" compile was called manually. The command failed with: /home/.../openwrt/staging_dir/host/bin/aclocal: line 2: aclocal.real: command not found autoreconf: /home/.../openwrt/staging_dir/host/bin/aclocal failed with exit status: 127 After the commit, the package is built sucessfully. Signed-off-by: Leonardo Mörlein <me@irrelefant.net>
2021-08-09 22:48:40 +00:00
${STAGING_DIR_HOST}/bin/aclocal.real $ACLOCAL_INCLUDE $@
Reference in New Issue
Copy Permalink