mirror of
https://github.com/bvanroll/_dotfiles.git
synced 2025-08-28 19:42:47 +00:00
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
PREFIX=$(echo $1 | cut -d= -f 2)
|
|
if [ -n "$PREFIX" ]
|
|
then
|
|
sed -i "s;^PREFIX.*;PREFIX = $PREFIX;g" Makefile
|
|
fi
|