12 lines
87 B
Bash
Executable File
12 lines
87 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" != "configure" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|