24 lines
692 B
Diff
24 lines
692 B
Diff
From 1dc033327792ef51cb08e224b8d90e7d8571084d Mon Sep 17 00:00:00 2001
|
|
From: Michal Sekletar <msekleta@redhat.com>
|
|
Date: Wed, 9 Apr 2014 15:37:53 +0200
|
|
Subject: [PATCH] build-sys: make pppd first and then plugins
|
|
|
|
---
|
|
linux/Makefile.top | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/linux/Makefile.top b/linux/Makefile.top
|
|
index 9a8945a..12210f2 100644
|
|
--- a/linux/Makefile.top
|
|
+++ b/linux/Makefile.top
|
|
@@ -13,8 +13,8 @@ INSTALL= install
|
|
|
|
all:
|
|
cd chat; $(MAKE) $(MFLAGS) all
|
|
- cd pppd/plugins; $(MAKE) $(MFLAGS) all
|
|
cd pppd; $(MAKE) $(MFLAGS) all
|
|
+ cd pppd/plugins; $(MAKE) $(MFLAGS) all
|
|
cd pppstats; $(MAKE) $(MFLAGS) all
|
|
cd pppdump; $(MAKE) $(MFLAGS) all
|
|
|