8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Fix a GNUism.
|
|
sed -i 's/-pm/-Dm/' Makefile
|
|
|
|
make PREFIX=/usr
|
|
make DESTDIR="$1" PREFIX=/usr install
|