Skip to content

Commit

Permalink
Merge pull request #912 from utoni/fix/make-install
Browse files Browse the repository at this point in the history
Fix `make install` failure using a pristine PF_RING due to missing target deps.
  • Loading branch information
cardigliano authored Feb 13, 2024
2 parents b7ac530 + 535d192 commit c35084d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion userland/examples/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pfsystest: pfsystest.o ${LIBPFRING}
pftimeline: pftimeline.o ${LIBPFRING}
${CC} ${CFLAGS} pftimeline.o ${LIBS} -o $@

install:
install: $(TARGETS)
mkdir -p $(DESTDIR)/usr/bin
cp $(TARGETS) $(DESTDIR)/usr/bin/

Expand Down
2 changes: 1 addition & 1 deletion userland/examples_zc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ zdelay: zdelay.o ${LIBPFRING} Makefile
ztime: ztime.o ${LIBPFRING} Makefile
${CC} ${CFLAGS} ztime.o ${LIBS} -o $@

install:
install: $(TARGETS)
ifneq (@HAVE_PF_RING_ZC@,)
mkdir -p $(DESTDIR)/usr/bin
cp $(TARGETS) $(DESTDIR)/usr/bin/
Expand Down

0 comments on commit c35084d

Please sign in to comment.