Skip to content

Commit 95f0e4e

Browse files
committed
Fix for make install message: "@INSTALL_FLAGS@ does not exist.
". Thanks, Paul!
1 parent 4476657 commit 95f0e4e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Makefile.in

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,8 @@ top_builddir = .
8989

9090

9191
INSTALL = @INSTALL@
92-
INSTALL_FLAGS = @INSTALL_FLAGS@
93-
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_FLAGS)
94-
INSTALL_LIBRARY = @INSTALL_PROGRAM@ $(INSTALL_FLAGS)
92+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
93+
INSTALL_LIBRARY = @INSTALL_PROGRAM@
9594
INSTALL_DATA = @INSTALL_DATA@
9695
INSTALL_SCRIPT = @INSTALL_SCRIPT@
9796

0 commit comments

Comments
 (0)