diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-15 14:09:19 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-15 14:09:19 +0200 |
commit | aea9a32c13d26ef73c1d0b673a8fc79346c6833f (patch) | |
tree | 5ace3f211949807d9e7a566549279828324ea569 | |
parent | m (diff) | |
download | dotfiles-aea9a32c13d26ef73c1d0b673a8fc79346c6833f.tar.gz dotfiles-aea9a32c13d26ef73c1d0b673a8fc79346c6833f.tar.bz2 dotfiles-aea9a32c13d26ef73c1d0b673a8fc79346c6833f.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rwxr-xr-x | base/new-c-proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/new-c-proj b/base/new-c-proj index af0b472..865e139 100755 --- a/base/new-c-proj +++ b/base/new-c-proj @@ -82,7 +82,7 @@ if printf '%s\n' "$1" | grep '^lib' >/dev/null 2>/dev/null; then LIB_MAJOR = 1 LIB_MINOR = 0 LIB_VERSION = \$(LIB_MAJOR).\$(LIB_MINOR) - LIB_NAME = \${LIBNAME} + LIB_NAME = ${LIBNAME} OBJ = |