a define must use quote

This commit is contained in:
Lgnap
2013-04-23 12:29:46 +02:00
parent 63fd1c96d6
commit 1613ae8119
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ distclean: clean
echo -e '<?php\nheader("Location: ./../index.php");\n?>' > ca/index.php
echo '<?php' > config.php
echo 'define(PHPKI_VERSION, "$(VERSION)");' >> config.php
echo 'define("PHPKI_VERSION", "$(VERSION)");' >> config.php
echo '?>' >> config.php
rm -f index.php setup.php

View File

@@ -1,3 +1,3 @@
<?php
define(PHPKI_VERSION, "0.83");
define("PHPKI_VERSION", "0.83");
?>