summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorPetr Spacek <pspacek@redhat.com>2016-10-21 22:35:28 +0200
committerMartin Babinsky <mbabinsk@redhat.com>2016-11-09 13:08:32 +0100
commitc48e5fd811326dc64e19490f88003e442815a052 (patch)
treee63d94b25d76b643dc05d6e2da2e9daef7438b40 /install
parent2725e440bf1e4930f9b1d19223424bcb0d4b7066 (diff)
downloadfreeipa-c48e5fd811326dc64e19490f88003e442815a052.tar.gz
freeipa-c48e5fd811326dc64e19490f88003e442815a052.tar.xz
freeipa-c48e5fd811326dc64e19490f88003e442815a052.zip
Build: move version handling from Makefile to configure
Version information is now in VERSION.m4 instead of VERSION. Makefile target version-update was minimized and configure can be run before make. Makefile temporarily contains hardcoded version which has to match the one specified in VERSION.m4. This is preparatory step which will allow us to replace hand-made Makefile with one generated by Automake. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
Diffstat (limited to 'install')
-rw-r--r--install/ui/src/libs/loader.js.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/libs/loader.js.in b/install/ui/src/libs/loader.js.in
index 6a50f327d..5159b439d 100644
--- a/install/ui/src/libs/loader.js.in
+++ b/install/ui/src/libs/loader.js.in
@@ -20,8 +20,8 @@
(function() {
var loader = window.ipa_loader = {
- num_version: '__NUM_VERSION__',
- api_version: '__API_VERSION__'
+ num_version: '@NUM_VERSION@',
+ api_version: '@API_VERSION@'
};
var head = document.getElementsByTagName('head')[0];
@@ -102,4 +102,4 @@
link(icons[i] + suffix, 'icon');
}
};
-})(); \ No newline at end of file
+})();