From 3bccd77443d3b8068669494786b1a0ec6f3b1d90 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 21 Sep 2023 03:08:19 -0600 Subject: [PATCH] Restore sed argument Restore argument to `sed` that was removed in #469. `install_macos` never completes without the argument. --- install_macos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_macos b/install_macos index 8ec4147ca..ad7e77bed 100755 --- a/install_macos +++ b/install_macos @@ -93,7 +93,7 @@ rm -f "$DESTDIR$INSTALL_PREFIX"/share/phoronix-test-suite/pts-core/static/images rm -f "$DESTDIR$INSTALL_PREFIX"/share/phoronix-test-suite/pts-core/static/images/%phoronix-test-suite.png -sed -e 's:export PTS_DIR=$(actualpath "$(dirname "$0")"):export PTS_DIR='"$INSTALL_PREFIX"'\/share\/phoronix-test-suite:g' +sed -e 's:export PTS_DIR=$(actualpath "$(dirname "$0")"):export PTS_DIR='"$INSTALL_PREFIX"'\/share\/phoronix-test-suite:g' phoronix-test-suite > $DESTDIR$INSTALL_PREFIX/bin/phoronix-test-suite chmod +x "$DESTDIR$INSTALL_PREFIX"/bin/phoronix-test-suite # sed 's:\$url = PTS_PATH . \"documentation\/index.html\";:\$url = \"'"$INSTALL_PREFIX"'\/share\/doc\/packages\/phoronix-test-suite\/index.html\";:g' pts-core/commands/gui_gtk.php > $DESTDIR$INSTALL_PREFIX/share/phoronix-test-suite/pts-core/commands/gui_gtk.php