diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-07-04 02:45:51 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-07-04 02:45:51 -0300 |
commit | e9e0c4f1e57f199bbf8f596cd5cf6c78cd6233d4 (patch) | |
tree | f574073267b62b5e4c5bd7260e05720fe44782f9 | |
parent | 3fcc9fad9a6411bc01dd2aa083a7cc8407155495 (diff) | |
download | abslibre-e9e0c4f1e57f199bbf8f596cd5cf6c78cd6233d4.tar.gz abslibre-e9e0c4f1e57f199bbf8f596cd5cf6c78cd6233d4.tar.bz2 abslibre-e9e0c4f1e57f199bbf8f596cd5cf6c78cd6233d4.zip |
linux-libre-firmware: add sed commands to fix configure file
-rw-r--r-- | libre/linux-libre-firmware/PKGBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libre/linux-libre-firmware/PKGBUILD b/libre/linux-libre-firmware/PKGBUILD index eb82af49b..45b5ff001 100644 --- a/libre/linux-libre-firmware/PKGBUILD +++ b/libre/linux-libre-firmware/PKGBUILD @@ -50,6 +50,12 @@ build() { # create firmware folder to put the free firmware files there install -d -m755 $pkgdir/usr/lib/firmware + # fix path on configure file + + sed -i 's|$PWD/../toolchain/inst|/usr|; + 's|xtensa-elf|xtensa-unknown-elf|; + ' target_firmware/configure + # compile ath9k-htc-firmware make -C target_firmware |