From 14048b96b0ce1618deb499da4d8981d5c13fe7bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Wed, 5 Jun 2013 01:49:19 -0400 Subject: [PATCH] rename genssl.sh to genssl --- .gitignore | 2 +- configure.ac | 4 ++-- tools/Makefile.in | 8 ++++---- tools/{genssl.sh.in => genssl.in} | 0 4 files changed, 7 insertions(+), 7 deletions(-) rename tools/{genssl.sh.in => genssl.in} (100%) diff --git a/.gitignore b/.gitignore index ed7985f3b..3dee7e11c 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,7 @@ src/y.tab.c ssld/ssld tools/convertilines tools/convertklines -tools/genssl.sh +tools/genssl tools/mkpasswd tools/viconf include/serno.h diff --git a/configure.ac b/configure.ac index 8896b4de1..3f1f95d11 100644 --- a/configure.ac +++ b/configure.ac @@ -1240,11 +1240,11 @@ AC_CONFIG_FILES( \ src/Makefile \ modules/Makefile \ tools/Makefile \ - tools/genssl.sh \ + tools/genssl \ doc/Makefile \ help/Makefile \ ) -AC_CONFIG_COMMANDS([tools/genssl.sh_chmod], [chmod 755 tools/genssl.sh]) +AC_CONFIG_COMMANDS([tools/genssl_chmod], [chmod 755 tools/genssl]) AC_OUTPUT diff --git a/tools/Makefile.in b/tools/Makefile.in index cbd99c7c6..6adf531a1 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -29,7 +29,7 @@ libexecdir = @libexecdir@ sysconfdir = @sysconfdir@ localstatedir = @localstatedir@ -PROGS = viconf mkpasswd convertilines convertklines genssl.sh +PROGS = viconf mkpasswd convertilines convertklines genssl all: $(PROGS) @@ -47,14 +47,14 @@ convertilines: convertilines.c convertklines: convertklines.c $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDES) convertklines.c -o convertklines $(IRCDLIBS) -genssl.sh: genssl.sh.in - cd .. && ./config.status tools/genssl.sh && ./config.status tools/genssl.sh_chmod +genssl: genssl.in + cd .. && ./config.status tools/genssl && ./config.status tools/genssl_chmod clean: $(RM) -f encspeed viconf chkconf mkpasswd *~ core *.exe convertklines convertilines distclean: clean - $(RM) -f genssl.sh Makefile + $(RM) -f genssl Makefile lint: lint -aacgprxhH $(CPPFLAGS) -DIRCD_PREFIX=\"@prefix@\" $(convertklines_SOURCES) $(mkpasswd_SOURCES) $(viconf_SOURCES) $(encspeed_SOURCES) >>../lint.out diff --git a/tools/genssl.sh.in b/tools/genssl.in similarity index 100% rename from tools/genssl.sh.in rename to tools/genssl.in