diff options
| author | ruki <[email protected]> | 2018-09-30 10:35:31 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-09-30 10:35:31 +0800 |
| commit | aa8567aac171d30261ecd0ec925773d7c170d86f (patch) | |
| tree | 10ab50d3db9bc691d0796cf31c8bc26bb5901ce4 | |
| parent | 99e772b7719ed355825e1eb7bd989ded395e7ecf (diff) | |
fix automake install script
| -rw-r--r-- | xmake/repository/packages/a/automake/xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmake/repository/packages/a/automake/xmake.lua b/xmake/repository/packages/a/automake/xmake.lua index 8db2e4527..6dcd8ef11 100644 --- a/xmake/repository/packages/a/automake/xmake.lua +++ b/xmake/repository/packages/a/automake/xmake.lua @@ -15,6 +15,10 @@ package("automake") on_install("macosx", "linux", function (package) import("package.tools.autoconf").install(package) + io.writefile(path.join(package:installdir("share", "aclocal"), "dirlist"), [[ + /usr/local/share/aclocal + /usr/share/aclocal + ]]) end) on_test(function (package) |
