diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2019-03-23 09:53:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-23 09:53:35 +0100 |
commit | 99748cddccbfc6bf6b1fed5a5ef580612d331855 (patch) | |
tree | f363bbb7d60c3d3b8efe6825aa462906f2b61584 /src | |
parent | e2cd89e3545a58d188e6b7c27256b1668b775d22 (diff) | |
parent | 43890b31fc45a76ac10e49a747ec925f77102bb7 (diff) |
Merge pull request #679 from chiehmin/link-use-relative-path
Use relative path for library link
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 8b0853dd4..cadd65ddd 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -61,7 +61,7 @@ distclean: clean install: $(NDPI_LIBS) mkdir -p $(DESTDIR)$(libdir) cp $(NDPI_LIBS) $(DESTDIR)$(libdir)/ - ln -Ffs $(DESTDIR)$(libdir)/$(NDPI_LIB_SHARED) $(DESTDIR)$(libdir)/$(NDPI_LIB_SHARED_BASE) - ln -Ffs $(DESTDIR)$(libdir)/$(NDPI_LIB_SHARED) $(DESTDIR)$(libdir)/$(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR) + cp -P $(NDPI_LIB_SHARED_BASE) $(DESTDIR)$(libdir)/ + cp -P $(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR) $(DESTDIR)$(libdir)/ mkdir -p $(DESTDIR)$(includedir) cp ../include/*.h $(DESTDIR)$(includedir) |