diff options
author | P. J. McDermott <pj@pehjota.net> | 2016-01-23 17:33:12 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2016-01-23 17:33:12 (EST) |
commit | a3b557ba5c6269541b03bb823e035a60965b3735 (patch) | |
tree | c55434b51396e840b9c35e1322de1a9780db40f6 | |
parent | 6f521c12ae370485b66dcf07e3437bfa04776ebc (diff) |
Makefile.am: Move PACKAGE_VERSION_GIT definition to top
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 7278df2..566424e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,15 +18,15 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -MANUAL = ProteanOS Development Kit Manual -TEXTDOMAIN = $$(printf '%s\n' '$(PACKAGE)' | sed -e 's|-|_|g') - if IN_GIT PACKAGE_VERSION_GIT = $$(git describe --tags --dirty | sed 's|^.*/||') else PACKAGE_VERSION_GIT = $(PACKAGE_VERSION) endif +MANUAL = ProteanOS Development Kit Manual +TEXTDOMAIN = $$(printf '%s\n' '$(PACKAGE)' | sed -e 's|-|_|g') + SUFFIXES = .sh .sho .ms .1in .1 .8in .8 # This PACKAGE_VERSION stuff is a rather gross hack, but it's the only reliable |