This commit is contained in:
pepe 2023-07-26 21:42:28 +00:00
parent b3026da9e7
commit 03ac7fa316
5 changed files with 5 additions and 5 deletions

3
configure vendored
View File

@ -189,10 +189,9 @@ else
echo "Using compiler $CC"
fi
[ -z "$DEBUG" ] && DEBUG=yes
echo "CC = $CC" >>$CONFIG_MK
echo "CFLAGS = -O2" >>$CONFIG_MK
echo "CFLAGS = -Oz" >>$CONFIG_MK
echo "LDFLAGS = -L\$(TOPDIR)/lib" >>$CONFIG_MK
echo "CPPFLAGS = -I. -I\$(TOPDIR) -I\$(TOPDIR)/include" >>$CONFIG_MK

View File

@ -15,7 +15,7 @@ install:
install -m644 xbps.d.5 $(DESTDIR)$(MANDIR)/man5
install -d $(DESTDIR)$(PKGCONFIGDIR)
install -m644 $(PCFILE) $(DESTDIR)$(PKGCONFIGDIR)
install -d $(DESTDIR)/$(DBDIR)/keys
-install -d $(DESTDIR)/$(DBDIR)/keys
install -m644 *.plist $(DESTDIR)/$(DBDIR)/keys
install -d $(DESTDIR)/$(SHAREDIR)/xbps.d
install -m644 repod-main.conf $(DESTDIR)/$(SHAREDIR)/xbps.d/00-repository-main.conf

View File

@ -94,7 +94,7 @@ libxbps.a: $(LIBFETCH_OBJS) $(LIBPROP_OBJS) $(OBJS)
.PHONY: install
install: all
install -d $(DESTDIR)$(LIBDIR)
-install -d $(DESTDIR)$(LIBDIR)
install -m 644 libxbps.a $(DESTDIR)$(LIBDIR)
install -m 755 $(LIBXBPS_SHLIB) $(DESTDIR)$(LIBDIR)
cp -a libxbps.so $(DESTDIR)$(LIBDIR)

View File

@ -31,6 +31,7 @@
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <linux/limits.h>
#include <openssl/err.h>
#include <openssl/sha.h>

View File

@ -22,7 +22,7 @@ clean:
.PHONY: install
install: all
install -d $(DESTDIR)$(SBINDIR)
-install -d $(DESTDIR)$(SBINDIR)
install -m 755 $(BIN) $(DESTDIR)$(SBINDIR)
ifdef BUILD_STATIC
install -m 755 $(BIN).static $(DESTDIR)$(SBINDIR)