mirror of https://github.com/sipwise/asterisk.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
445 B
26 lines
445 B
#!/bin/sh
|
|
if [ ! -f .flavor ]; then
|
|
cat << END
|
|
/*
|
|
* version.h
|
|
* Automatically generated
|
|
*/
|
|
#define ASTERISK_VERSION "${ASTERISKVERSION}"
|
|
#define ASTERISK_VERSION_NUM ${ASTERISKVERSIONNUM}
|
|
|
|
END
|
|
else
|
|
aadkver=`cat .version`
|
|
aadkflavor=`cat .flavor`
|
|
cat << END
|
|
/*
|
|
* version.h
|
|
* Automatically generated
|
|
*/
|
|
#define ASTERISK_VERSION "${ASTERISKVERSION}-${aadkflavor}"
|
|
#define ASTERISK_VERSION_NUM ${ASTERISKVERSIONNUM}
|
|
|
|
END
|
|
fi
|
|
|