1
0
فهرست منبع

OpenADK edition, and make buildable on desktop GNU/Linux

Signed-off-by: mirabilos <tg@mirbsd.org>
mirabilos 6 سال پیش
والد
کامیت
3c3ff868b2
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 0
      package/sash/src/libsash/Makefile
  2. 1 2
      package/sash/src/sash.c

+ 1 - 0
package/sash/src/libsash/Makefile

@@ -1,5 +1,6 @@
 
 LIB = libsash.a
+RANLIB ?= ranlib
 CHOPSRC = utils.c
 LIBOBJS = intflag.o modestring.o timestring.o isadir.o copyfile.o \
 	buildname.o expandwildcards.o namesort.o match.o makeargs.o \

+ 1 - 2
package/sash/src/sash.c

@@ -20,7 +20,6 @@
 #include <sys/time.h>
 #include <sys/wait.h>
 
-static const char version[] = "OpenADK";
 static const char enoent_msg[] = "Bad command or file name";
 static const char unkerr_msg[] = "Unknown error!";
 
@@ -215,7 +214,7 @@ int main(argc, argv, env)
 		printf("Shell invoked to run file: %s\n",argv[1]);
 		}
 	else
-		printf("\nSash command shell (version %s)\n", version);
+		printf("\nSash command shell (OpenADK edition)\n");
 	fflush(stdout);
 
 	signal(SIGINT, catchint);