diff options
author | lloyd <[email protected]> | 2007-03-04 09:12:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-03-04 09:12:58 +0000 |
commit | 7fb693f88d45c74d3041efa57d0cdfd1a8c5b209 (patch) | |
tree | 9dba2ec00737b9eccaa8bdb81853b47f16e6d9fa | |
parent | d0c1e0418b82589ef207f23ce0828e9432532f9c (diff) |
Fix the static-only Unix makefile, it was referencing the 'botan_config'
variable which was not set; it should have been 'botan-config'.
-rw-r--r-- | misc/config/makefile/unix.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/config/makefile/unix.in b/misc/config/makefile/unix.in index 60f2dc57c..76ca08a66 100644 --- a/misc/config/makefile/unix.in +++ b/misc/config/makefile/unix.in @@ -31,7 +31,7 @@ DOCDIR = $(INSTALLROOT)/@{var:docdir}/Botan-$(VERSION) OWNER = @{var:install_user} GROUP = @{var:install_group} -CONFIG_SCRIPT = @{var:botan_config} +CONFIG_SCRIPT = @{var:botan-config} ################################################## # Aliases for Common Programs # |