ftalbrecht / aur

Collection of some arch packages.
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

[gcc48] see AUR comment of maleadt on 2014-06-02 14:47 #5

Closed ftalbrecht closed 10 years ago

ftalbrecht commented 10 years ago

There is an issue with package(): the mv should redirect its pipes using &>/dev/null rather than 2&>, or ls returns 2 and the move of libgcc to a pkgver-dependent directory never happens (and conflicts happen at installation time).

$ ls / 2&>/dev/null && echo test; echo $? 2 $ ls / &>/dev/null && echo test; echo $? test 0