diff options
author | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-06 21:05:31 +0000 |
---|---|---|
committer | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-06 21:05:31 +0000 |
commit | ef4328599bd24ed46db3eac7c2448332003ec19e (patch) | |
tree | bfddc17785f901ff96689d9c5e17066cab09dc36 /media-libs/flac/files | |
parent | enumerate available targets with `crossdev -t help` #101545 (diff) | |
download | historical-ef4328599bd24ed46db3eac7c2448332003ec19e.tar.gz historical-ef4328599bd24ed46db3eac7c2448332003ec19e.tar.bz2 historical-ef4328599bd24ed46db3eac7c2448332003ec19e.zip |
change default as check to not drop an a.out and wait for stdin on Darwin systems
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'media-libs/flac/files')
-rw-r--r-- | media-libs/flac/files/flac-1.1.2-gas.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media-libs/flac/files/flac-1.1.2-gas.patch b/media-libs/flac/files/flac-1.1.2-gas.patch index 8e5d2ebf6492..06b13c0e3ac8 100644 --- a/media-libs/flac/files/flac-1.1.2-gas.patch +++ b/media-libs/flac/files/flac-1.1.2-gas.patch @@ -12,7 +12,7 @@ +AC_CHECK_PROGS(AS, as, as) +AC_CHECK_PROGS(AS, gas, gas) + -+test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas ++test "$AS" = "as" && as -v -o /dev/null < /dev/null | grep GNU >/dev/null && AS=gas + +AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as" ) +AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas" ) |