Commit c4d4ab448bfa65e708fd1a3ffee876eaae74f488
1 parent
166cb3b2
Exists in
master
and in
1 other branch
Fixing installation.
Showing
1 changed file
with
9 additions
and
1 deletions
Show diff stats
client/Makefile.in
| ... | ... | @@ -255,10 +255,18 @@ install-devel: |
| 255 | 255 | @$(MKDIR) \ |
| 256 | 256 | $(DESTDIR)/$(includedir)/lib3270 |
| 257 | 257 | |
| 258 | + @$(MKDIR) \ | |
| 259 | + $(DESTDIR)/$(includedir)/lib3270/ipc | |
| 260 | + | |
| 261 | + | |
| 258 | 262 | @$(INSTALL_DATA) \ |
| 259 | - $(BASEDIR)/common/src/include/lib3270/ipc.h \ | |
| 263 | + src/include/lib3270/ipc.h \ | |
| 260 | 264 | $(DESTDIR)/$(includedir)/lib3270 |
| 261 | 265 | |
| 266 | + @$(INSTALL_DATA) \ | |
| 267 | + src/include/lib3270/ipc/*.h \ | |
| 268 | + $(DESTDIR)/$(includedir)/lib3270/ipc | |
| 269 | + | |
| 262 | 270 | # Install PKG-CONFIG files |
| 263 | 271 | @mkdir -p $(DESTDIR)$(libdir)/pkgconfig |
| 264 | 272 | ... | ... |