Ports: Make sure re-installing the gcc port doesn't fail

Re-installing the gcc port would previously fail because we failed to
overwrite the symlink.
This commit is contained in:
Gunnar Beutner 2021-08-13 21:05:05 +02:00 committed by Andreas Kling
parent 6eee60de41
commit 79db56eb82

View file

@ -20,5 +20,5 @@ build() {
install() {
run make $installopts
run ln -s gcc "${SERENITY_INSTALL_ROOT}/usr/local/bin/cc"
run ln -sf gcc "${SERENITY_INSTALL_ROOT}/usr/local/bin/cc"
}