mirror of
https://github.com/znc/znc.git
synced 2026-06-27 21:41:25 +02:00
Fix modperl re-building
Make was always rebuilding modperl/ZNC.so because the Makefile was actually describing a file modperl/ZNC."so". Fix this by getting rid of the unnecessary pair of quotes. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
@@ -15,10 +15,10 @@ modperlLDFLAGS := $(PERL_LD)
|
||||
modperlCXXFLAGS += -I.
|
||||
|
||||
ifeq "$(ISCYGWIN)" "1"
|
||||
PERLCEXT_EXT := "dll"
|
||||
PERLDEPONMOD := "modperl.so"
|
||||
PERLCEXT_EXT := dll
|
||||
PERLDEPONMOD := modperl.so
|
||||
else
|
||||
PERLCEXT_EXT := "so"
|
||||
PERLCEXT_EXT := so
|
||||
PERLDEPONMOD :=
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user